エラーまたはUncaughtTypeErrorが発生するのはなぜですか: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>