iframe 要素はドキュメント内のドキュメントです。
ウィンドウ オブジェクト: ブラウザーは、HTML ドキュメントを開くときに、対応するウィンドウ オブジェクトを作成します。ただし、ドキュメントで 1 つ以上のフレームが定義されている場合 (つまり、1 つ以上のフレームまたは iframe タグが含まれている場合)、ブラウザは元のドキュメントのウィンドウ オブジェクトを作成し、さらに iframe ごとに追加のウィンドウ オブジェクトを作成します。元のウィンドウの子ウィンドウ。
contentWindow: 指定された iframe または iframe が配置されているウィンドウ オブジェクトを参照します
Demo1
親ページ fu.html:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>父页面</title> </head> <body> <input type=button value="调用子页面中的函数childSay函数" onclick="callChild()"> <iframe id="myFrame" src="zi.html"></iframe> <script type="text/javascript"> function parentSay() { alert("我是父页面中的方法"); } function callChild() { document.getElementById("myFrame").contentWindow.childSay(); } </script> </body> </html>
子ページ zi.html
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>子页面</title> </head> <body> <input type=button value="调用父页面中的parentSay()函数" onclick="callParent()"> <script type="text/javascript"> function childSay() { alert("我是子页面的say方法"); } function callParent() { parent.parentSay(); } </script> </body> </html>
Demo2
親ページ iframe1.html:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>父页面与子页面之间的调用</title> </head> <body> <iframe src="http://localhost/iframe/iframe3.html" id="iframe3"></iframe> <iframe src="http://localhost/iframe/iframe2.html" id="iframe2"></iframe> <div>我是父页面</div> <script type="text/javascript"> var iframe2=document.getElementById('iframe2'); iframe2.onload=function(){//父页面调用子页面中的方法 iframe2.contentWindow.b(); }; function test2() { console.log("我是父页面中的方法,在子页面中调用的"); return iframe2; } </script> </body> </html>
子ページ iframe2.html:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>子页面</title> </head> <body> <div id="test">aaa</div> <div>子页面</div> <script type="text/javascript"> //子页面iframe2.html调用父页面iframe1.html的函数: parent.test2(); function b(){ console.log("我是子页面iframe2"); } function c() { console.log("iframe3页面调用iframe2页面"); } </script> </body> </html>
サブページ iframe3.html:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>iframe3</title> </head> <body> <script type="text/javascript"> var iframe2=parent.test2(); iframe2.contentWindow.c();//iframe3调用iframe2中的方法 </script> </body> </html>
Demo2 では、サブページ間の相互呼び出しも実装しています。