利用JQuery在父窗口中获取Iframe中的元素:

格式:

$("#iframe的id").contents().find("#iframe中控件的id").事宜(); // 办法1$("#iframe中控件的id",document.frames("iframe的name").document).事宜(); // 办法2

php获取iframe中元素获取Iframe表里的元素 Docker

事例:

$("#iframeId").contents().find("#div01").click(); // 办法1$("#div01",document.frames("iframeId").document).click(); // 办法2

利用JS在父窗口中获取Iframe中的元素:

格式:

window.frames["iframe中的name值"].document.getElementById("iframe中控件的id").事宜();

事例:

window.frames["iframeName"].document.getElementById("div01").click();

Iframe子窗口->父窗口的元素

利用JQuery在Iframe中获取父窗口的元素

格式:

$('#父窗口中元素的id', parent.document).事宜();

事例:

$('#div01', parent.document).click();

利用JS在Iframe中获取父窗口的元素

格式:

window.parent.document.getElementById("父窗口中元素的id").事宜();

事例:

window.parent.document.getElementById("div01").click();

获取iframe中window工具方法.contentWindow

javascript

document.getElementsByTagName('iframe')[0].contentWindow

jQuery

$("#epubArea iframe")[0].contentWindow;