こちら実行すると下記のエラーが出ます。
Cannot read property 'appendChild' of null at HTMLButtonElement.<anonymous>
原因について教えていただけますでしょうか。
html
1<body> 2 <ol ids="lists"> 3 <li>a</li> 4 <li>a</li> 5 <li>a</li> 6 </ol> 7 <button id="button">more</button> 8 9 <script src="index.js"></script> 10</body>
JavaScript
1const btn = document.getElementById("button"); 2const lists = document.getElementById("lists"); 3 4btn.addEventListener("click", function(){ 5 const list = document.createElement("li"); 6 list.innerText = "oo" 7 lists.appendChild(list); 8 console.log(list); 9});
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/02/09 10:58