javascript – getElementById和null – 为什么?

前端之家收集整理的这篇文章主要介绍了javascript – getElementById和null – 为什么?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > Why does jQuery or a DOM method such as getElementById not find the element?6个
为什么这段代码不起作用?我正在使用FF.
<head>
<script type="text/javascript">

document.getElementById("someID").onclick = function(){
    alert("Yahooo");
}
</script> 
</head>

<body> 
<a href="#" id="someID">someID</a>
</body>

</html>

我得到javascript错误getElementById等于null.

解决方法

执行脚本时不会加载所需的DOM.向下移动(在href下面)或者像这样定义它:
window.onload = function () {
    document.getElementById("someID").onclick = function(){
        alert("Yahooo");
    }
}

完全加载页面时将调用window.onload.

原文链接:https://www.f2er.com/js/159152.html

猜你在找的JavaScript相关文章