gpt4 book ai didi

javascript - "iframe.contentDocument"在 IE8 和 FF(3.5 及以下版本)中不工作还有其他步骤可以解决这个问题吗?

转载 作者:数据小太阳 更新时间:2023-10-29 03:50:14 27 4
gpt4 key购买 nike

我在 js file-uploader 中使用了这个“iframe.contentDocument”,但它在 IE8,Firefox(3.5 及以下版本。我如何通过使用其他 DOM 来处理 iframe 来解决这个问题?

感谢大家

最佳答案

尝试

var doc;
var iframeObject = document.getElementById('iframeID'); // MUST have an ID
if (iframeObject.contentDocument) { // DOM
doc = iframeObject.contentDocument;
}
else if (iframeObject.contentWindow) { // IE win
doc = iframeObject.contentWindow.document;
}
if (doc) {
var something = doc.getElementById('someId');
}
else {
alert('Wonder what browser this is...'+navigator.userAgent);
}

关于javascript - "iframe.contentDocument"在 IE8 和 FF(3.5 及以下版本)中不工作还有其他步骤可以解决这个问题吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4310946/

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