1. 程式人生 > >呼叫iframe中的js函式

呼叫iframe中的js函式

 在父頁面呼叫iframe中的函式    

js

var iframe = window.document.getElementById("iframeId"); 

iframe.contentWindow.methodName();

jquery

var iframe2 = $("#iframeId")[0];

iframe2.contentWindow.methodName();

 在呼叫同級iframe中的函式    

js

var iframe1 = window.parent.window.document.getElementById("iframeId"); 

iframe1.contentWindow.methodName();

jquery

var iframe2 = $("#iframeId",window.parent.document)[0];

iframe2.contentWindow.methodName();