<iframe src="a1.html" id="iframe1Id" name="iframe1Name" width="100%"></iframe>
第一种:
document.getElementById("iframe1Id").src = "form.html";
第二种:注意点target和inframe的name必须相等
<a href="form.html" target="iframe1Name">123</a>
<iframe src="a1.html" id="iframe1Id" name="iframe1Name" width="100%"></iframe>
第一种:
document.getElementById("iframe1Id").src = "form.html";
第二种:注意点target和inframe的name必须相等
<a href="form.html" target="iframe1Name">123</a>