gpt4 book ai didi

JavaScript 错误 : element is null

转载 作者:行者123 更新时间:2023-11-28 01:16:15 24 4
gpt4 key购买 nike

这是我的所有代码...内联 JavaScript 警报很好地触发,但外部警报则不然。每当我重新加载页面时,我都会收到一条控制台错误日志,显示“TypeError:tileBlock is null”..有什么想法吗?我还没有遇到过这个问题,我不想被迫内联编写所有 Javascript 事件处理程序。谢谢!

#tileBlock {
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
background-color: #0b0b0b;
background-position: center;
background-repeat: no-repeat;
background-image: url(photo.jpg);
border: 20px solid #fff;
background-size: cover;
}

@media (max-width: 400px) {
#tileBlock {
border-width: 8px;
}
}


<body>
<div class="wrapper" id="tileBlock" onclick="alert('You clicked (inline)')"></div>
</body>




var tileBlock = document.getElementById('tileBlock');
tileBlock.onclick = function() {
alert('you clicked(external script)');
}

最佳答案

包含 jquery 库并尝试以下操作:

  $('#tileBlock').onclick(function(){
alert('you clicked(external script)');
});

我也尝试过你的代码并且它有效。(不是我的jquery)试试这个:http://jsfiddle.net/XcsN/evK3v/

关于JavaScript 错误 : element is null,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23814025/

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