关于js报错信息Uncaught TypeError: Cannot read properties of null (reading ‘appendChild‘);

关于js报错信息Uncaught TypeError: Cannot read properties of null (reading ‘appendChild’);

我在js文件中生成标签并加入body中,发现提示无法读取body,原因是js在页面生成前就已经执行所以获取不到body
解决方法:将appendhild或者需要获取body标签的js代码或文件放在body内部或者body标签后

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <div></div>
    <script src="./index.js"></script>//放中间
</body>
<script src="./index.js"></script>//放最后
</html>

你可能感兴趣的:(html,html5,javascript)