为什么 document.body 在我的 javascript 中是 null?
2022-08-30 02:21:49
这是我的简短HTML文档。
为什么 Chrome Console 会注意到此错误:
“未捕获的类型错误:无法调用”?
null
<html>
<head>
<title>Javascript Tests</title>
<script type="text/javascript">
var mySpan = document.createElement("span");
mySpan.innerHTML = "This is my span!";
mySpan.style.color = "red";
document.body.appendChild(mySpan);
alert("Why does the span change after this alert? Not before?");
</script>
</head>
<body>
</body>
</html>