码迷,mamicode.com
首页 > Web开发 > 详细

执行指定iframejs方法

时间:2017-07-05 16:37:50      阅读:318      评论:0      收藏:0      [点我收藏+]

标签:window   content   parent   his   fresh   function   ejs   func   frame   

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方法

标签:window   content   parent   his   fresh   function   ejs   func   frame   

原文地址:http://www.cnblogs.com/Andy-Blog/p/7121976.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!