gpt4 book ai didi

javascript - IE 中的 getElementById.contentDocument 错误

转载 作者:行者123 更新时间:2023-12-03 13:06:06 32 4
gpt4 key购买 nike

<html>
<script type="text/javascript">
function func() {
alert(document.getElementById('iView').contentDocument);
}
</script>
<body>
<iframe id="iView" style="width:200px;height:200px;"></iframe>
<a href="#" onclick="func();">click</a>
</body>
</html>

点击后,Firefox 返回 [object HTMLDocument]。 Internet Explorer 返回未定义。

如何使用 Internet Explorer 选择 iView 元素?谢谢。

最佳答案

相当于 contentDocument 的跨浏览器(包括 Firefox 本身,contentDocument 确实有效)是 contentWindow.document .

所以试试:

alert(document.getElementById('iView').contentWindow.document);
contentWindow让您引用 iframe 的 window对象,当然还有 .document只是 iframe 的 DOM Document 对象。

Here's an article that summarizes better .

关于javascript - IE 中的 getElementById.contentDocument 错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1477547/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com