gpt4 book ai didi

javascript - iframe.contentDocument 不适用于 IE8

转载 作者:行者123 更新时间:2023-12-03 08:19:58 26 4
gpt4 key购买 nike

如何在 IE8 上运行它?

var innerdoc = document.getElementsByTagName('iframe')[2].contentDocument;

我不能使用 jQuery,也不能使用 getElementsById()

最佳答案

According to MDN ,IE8 不支持 contentDocument 属性。

要解决此问题,您可以访问 .contentWindow.document:

var element = document.getElementsByTagName('iframe')[2],
innerDoc = null;

if (element.contentDocument) {
innerDoc = element.contentDocument;
}
else if (element.contentWindow) { // IE fallback
innerDoc = element.contentWindow.document;
}

关于javascript - iframe.contentDocument 不适用于 IE8,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33783438/

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