无法将属性“ innerHTML”设置为null
为什么会出现错误或未捕获的TypeError:无法将属性’innerHTML’设置为null?我以为我了解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>
回答:
您必须将hello
div放在脚本之前,以便在加载脚本时该div存在。
以上是 无法将属性“ innerHTML”设置为null 的全部内容, 来源链接: utcz.com/qa/429990.html