我正在尝试获取 ID 为 stars-background
的元素,并且我很确定我没有犯任何错误。但它不断显示无论我做什么,document.getElementById
都不是一个函数。
这是我的 javascript:
const starsBackground = document.getELementById('stars-background');
for (let i = 0; i < 10; i++) {
let singleStar = document.createElement('LI');
singleStar.classList.add('star');
starsBackground.appendChild(singleStar);
};
这是我的 html:
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="animation.css">
<title></title>
</head>
<body>
<div class='first-slide'>
<div class="moon">
</div>
<ul id="stars-background"></ul>
</div>
<script src="animation.js"></script>
</body>
</html>
答案 0 :(得分:0)
没有像 getELEmentById 那样的东西。它的 getElementById。