부모 노드에 있는 모든 자식 노드를 한 번에 지우기 위해 while문으로 지워준다!
// parentNode
const contentsList = document.querySelector(".contents__list");
if(contentsList.hasChildNodes()){
// lastChilde로 해도 가능
let firstChild = contentsList.firstChild;
while(firstChild){
contentsList.removeChild(firstChild);
firstChild = contentsList.firstChild;
}
}
이 방법도 있음(뭔가 별로라 해보지는 않았지만)
const parent = document.querySelector(".contentsWrap");
parent.innerHTML = "";
'STUDY > JavaScript' 카테고리의 다른 글
JS | axios interceptors (0) | 2020.11.04 |
---|---|
JS | Map (0) | 2020.09.29 |
JS | 위치 정보를 통해 현재 날씨 출력하기 ( geolocation / Weather API ) (1) | 2020.06.15 |
JS | localStorage알아보기 (0) | 2020.06.09 |
JS | Date알아보기 ( + 남은 날짜 및 시간 구하기) (0) | 2020.06.05 |