jQuery 互相调用iframe页面中js的方法
1,子iframe内调用父类函数方法:
window.parent.func();
2,子Iframe中获取父界面的元素:
$("#xx", window.parent.document);
这个xx就是父界面中要获取的元素的ID。
3,jquery 调用子iframe页面中js的方法:
iframefunction()是子页面的方法
$(window.parent.document).contents().find("#iframename")[0].contentWindow.iframefunction();
4.
function RefreshMaterialManage()
{
$(window.parent.document).find("iframe").each(function () {
//匹配条件(js方法QueryMaterial())
if ($(this).attr("src") == "/ContentManage/Weixin_MaterialManage.aspx")
{
$(this)[0].contentWindow.QueryMaterial();
}
});
}