私はJSに不慣れで、いくつかの基本的なことを学ぼうとしています。私はこれに何時間も費やしましたが、それほど難しいことではないと思います。何らかの理由で、私のコンピューターは、childNodeを要求していることを認識していません。
これは、私が持っている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>