类型错误:无法将属性“onclick”设置为 null
2018-02-27
13512
html以下
930761264
javascript下面
963569633
我正在得到此(main.js:11无型Typeerror:无法将属性设置为null的属性'onClick' 在Window.onload)控制台中的错误,无法弄清原因。我已经尝试了其他多种解决方案,包括在HTML中移动标签,因为我看到的帮助了其他人,但是我无法得到它。
2个回答
id
区分大小写。因此您的元素是
#stop
而不是
#Stop
var stop = document.getElementById('stop')
只需确保对所有元素都执行此操作即可。
void
2018-02-27
检查 id 的大小写。
在 html 中写入
id="start"
,但在 js 中写入
document.getElementById('Start')
。
0xLLLLH
2018-02-27