标签:error: load cannot hang get date() 引用 read doc
看w3c学习js,有时按自己想法来,会出一些莫名奇妙的错误,而这些问题百度到了,但因为学习原因基础不捞,导致看到了答案,却认为这不是答案
1.一个很简单的 一个html,一个js文件 我想在js中的button 点击在 p中显示时间 开始时我把引用script放在最前边 结果报错:Uncaught TypeError: Cannot set property ‘onchange‘ of null.答案是这么说的:Make sure the DOM is ready before you access it. 确定文档已准备好了,再没用 document.Onload时 ,js引用一定要把引用放到最后边
html
<body> <p id ="demo"></p> <button id ="btn" >这是</button> <script src=02.js></script> </body>
js文件
document.getElementById("btn").onclick=function(){displayDate()}; function displayDate() { document.getElementById("demo").innerHTML=Date(); }
标签:error: load cannot hang get date() 引用 read doc
原文地址:https://www.cnblogs.com/SoftWareIe/p/9044903.html