我是 JS 的新手,正在尝试学习一些基本的东西。我在这上面花了几个小时,但我认为这不应该那么困难。出于某种原因,我的计算机无法识别我正在请求 childNodes。
这是一个简单的脚本,它只是试图计算我拥有的 li 标签的数量。我知道还有其他方法可以做到这一点,但我正在尝试以这种方式学习。
<title>To-Do List</title>
<script>
function findComments(){
var bodyTag = document.getElementsByTagName("ol");
var count = 0;
for(var i=0;i<bodyTag.childNodes.length;i++){
if(bodyTag.childNodes[i].nodeType == 1){
count++;
}
}
alert(count);
}
window.onload = findComments;
</script>
<!--List is declared-->
<ol id="toDoList">
<!--List Items are created-->
<li>Mow the lawn</li>
<li>Clean the windows</li>
<li>Answer your email</li>
</ol>
<!--Main paragraph-->
<p id="toDoNotes">Make sure all these are completed by 8pm so you can watch the game on TV!</p>
<script>
</script>