我尝试将删除全部添加到我的应用程序中。 我有这样的事情:
function removeAll(){
var ol = document.getElementsByTagName('ol');
if(ol.lenght > 0){
ol.remove();
}
}
document.getElementById('delete-all').addEventListener('click', removeAll);
<input type="text" id="text-field">
<input type="button" id="add-task" value="dodaj zadanie!">
<input type="button" id="delete-all" value="usuń wszystko">
<div id="to-do-list-container">
<ul id="task-list">
<ol>damian</ol>
</ul>
</div>
它显示没有错误...我检查是否存在带有标签ol的元素,然后尝试使用ol标签删除所有元素。我试过ol.parrentNode.remove();同样的效果......
答案 0 :(得分:1)
使用while
循环尝试以下内容:
function removeAll(){
var list = document.getElementById("task-list");
while(list.firstChild){
list.removeChild(list.firstChild);
}
}
document.getElementById('delete-all').addEventListener('click', removeAll);
<input type="text" id="text-field"/>
<input type="button" id="add-task" value="dodaj zadanie!"/>
<input type="button" id="delete-all" value="usuń wszystko"/>
<div id="to-do-list-container">
<ul id="task-list">
<ol>damian</ol>
<ol>damian2</ol>
<ol>damian3</ol>
</ul>
</div>