在框架中点击iframe1中的链接,要改变iframe2中的内容!改怎么做?最好有代码!
2 回答
桃花长相依
TA贡献1860条经验 获得超8个赞
a.html:
<html>
<body>
<script type="text/javascript">
function show()
{
alert(document.getElementById("frame2").src);
}
</script>
<iframe name="frame2" id="frame2" src="ab.html"></iframe>
<iframe name="frame3" id="frame3" src="axx.html"></iframe>
<button onclick="show()">测试</button>
</body>
</html>
<html>
<body>
<script type="text/javascript">
function show(){ alert(document.getElementById("frame2").src);}
</script>
<iframe name="frame2" id="frame2" src="ab.html"></iframe>
<iframe name="frame3" id="frame3" src="axx.html"></iframe>
<button onclick="show()">测试</button>
</body>
</html>
ab.html:
<html> <body> <script type="text/javascript"> function show() { alert(parent.document.getElementById("frame2").src); } </script> <button onclick="show()">测试</button> </body> </html>
- 2 回答
- 0 关注
- 370 浏览
添加回答
举报
0/150
提交
取消