在iframe1中如何获得iframe2的引用?(急)

在框架中点击iframe1中的链接,要改变iframe2中的内容!改怎么做?最好有代码!

达令说
浏览 371回答 2
2回答

桃花长相依

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>

Qyouu

在iframe1中使用parent来获取父页面的iframe2。
打开App,查看更多内容
随时随地看视频慕课网APP