无法获取未定义或 null 引用的属性“contentWindow”

在iframe 中有时候 这样使用contentWindow 会报   无法获取未定义或 null 引用的属性“contentWindow”   这种情况 我是在IE中遇到 其他浏览器一切正常。

parent.frames[top.$(".J_iframe:visible").attr("id")].contentWindow.Tanchu();

要让IE兼容要这样写:

parent.document.getElementById(top.$(".J_iframe:visible").attr("id")).contentWindow.Tanchu();

这样就可以正常调用父页面的方法了。

总结一下分享,让后面的小伙伴少走点弯路。

posted @ 2018-05-29 14:12  幽冥狂_七  阅读(8001)  评论(0编辑  收藏  举报