gpt4 book ai didi

javascript - 脚本5007 : Unable to set property 'onclick' of undefined or null reference

转载 作者:行者123 更新时间:2023-11-28 08:00:07 25 4
gpt4 key购买 nike

这是我现在使用的页面结构

Page Structure

只需在文档准备好时单击 Iframe 内容窗口即可尝试调用该函数。

文档准备好后,我收到脚本错误,无法理解原因是什么。我尝试将代码放在 window.onload 上,但仍然遇到同样的问题。谁能指导我解决脚本错误?可能是什么原因或我哪里出错了?

代码:

$(document).ready(function(){
document.getElementById("homeFrame").contentWindow.document.body.onclick = function()
{
hideEmpDiv();
}
});

浏览器:IE10

最佳答案

试试这个,但我怀疑你是否需要文档准备功能:

$(document).ready(function(){
window.onload = function () {
document.getElementById("homeFrame").contentWindow.document.body.onclick = function()
{
hideEmpDiv();
}
if (Element == null) return false;
}
});

关于javascript - 脚本5007 : Unable to set property 'onclick' of undefined or null reference,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25547969/

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