控制台报错
代码
window.onload = function(){
var para = document.createElement("p");
var testdiv = document.getElementById("testdiv");
testdiv.appendChild(para);
var txt = document.createTextNode("Hello world");
para.appendChild(txt);
}
Uncaught TypeError: Cannot read property 'appendChild' of null
at window.onload (test.js:4)
window.onload @ test.js:4
建议贴上你的html,报错的地方应该是你的testdiv获取不正确,你可以把testdiv打印出来看一下。