为什么我得到一个错误或未捕获的 TypeError: 不能设置为 null 的属性“ innerHTML”? 我以为我理解 innerHTML,并且以前就能够使用它。
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Untitled Document</title>
<script type ="text/javascript">
what();
function what(){
document.getElementById('hello').innerHTML = 'hi';
};
</script>
</head>
<body>
<div id="hello"></div>
</body>
</html>