执行指定iframejs方法
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了执行指定iframejs方法相关的知识,希望对你有一定的参考价值。
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();
}
});
}
以上是关于执行指定iframejs方法的主要内容,如果未能解决你的问题,请参考以下文章
使用js方法将table表格中指定列指定行中相同内容的单元格进行合并操作。