网页html错误:Uncaught TypeError: Cannot read property 'addEventListener' of null
程序员文章站
2022-03-02 09:37:24
...
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<script>
document.getElementById("myBtn").addEventListener("click", function(){
document.getElementById("demo").innerHTML = "Hello World";
});
</script>
</head>
<body>
<p>该实例使用 addEventListener() 方法来向按钮添加点击事件。</p>
<button id="myBtn">点我</button>
<p id="demo"></p>
</body>
</html>
标签元素还没有创建就调用引用标签的脚本就会出现此问题,将脚本放置在脚本标签的后面就可以了
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
</head>
<body>
<p>该实例使用 addEventListener() 方法来向按钮添加点击事件。</p>
<button id="myBtn">点我</button>
<p id="demo"></p>
<script>
document.getElementById("myBtn").addEventListener("click", function(){
document.getElementById("demo").innerHTML = "Hello World";
});
</script>
</body>
</html>
推荐阅读
-
JavaScript Uncaught TypeError: Cannot read property 'value' of null
-
Uncaught TypeError: Cannot read property 'click' of null
-
Uncaught (in promise) TypeError: Cannot read property 'getAttribute' of null
-
echarts-all.js:1 Uncaught TypeError: Cannot read property 'getAttribute' of null
-
[Echarts] Uncaught TypeError: Cannot read property ‘getAttribute‘ of null
-
easyui datagrid Uncaught TypeError: Cannot read property ‘width‘ of null
-
javascript - wordpress 3.8.1 版本安装 ck编辑器插件 4.0 js错误 Uncaught TypeError: Cannot read property 'add' of undefined
-
javascript - wordpress 3.8.1 版本安装 ck编辑器插件 4.0 js错误 Uncaught TypeError: Cannot read property 'add' of undefined
-
JavaScript Uncaught TypeError: Cannot read property 'value' of null
-
Uncaught TypeError: Cannot read property 'DYMC' of null