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

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

无法获取未定义或 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();

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


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


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/585439.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-12
下一篇 2022-04-12

发表评论

登录后才能评论

评论列表(0条)

保存