반응형
function deleteAll() {
localStorage.removeItem('todos')
while(todoList.childElementCount !== 0 ){
todoList.removeChild(todoList.firstChild)
}
}
allDelete.onclick= deleteAll
반응형
'Frontend > HTML, CSS, DOM, jQuery' 카테고리의 다른 글
CSS 초기화 reset 리셋 (0) | 2021.09.20 |
---|---|
jQuery) 자바스크립트 새로고침 없이 리로드 (0) | 2021.09.08 |
DOM 연습 예제 (0) | 2021.08.25 |
CSS) 그림자 (0) | 2020.11.29 |
DOM) DOM 참고 사이트 (0) | 2020.11.11 |