const memberList = document.querySelector('ul.member-list');
while (memberList.hasChildNodes()) {
memberList.removeChild(memberList.firstChild );
}
const datePlanContainer = document.querySelector('ul.date-plan-container');
while (datePlanContainer.firstChild) {
datePlanContainer.removeChild(datePlanContainer.lastChild);
}
참조
'2. Front-end > 2-3. Java Script' 카테고리의 다른 글
JS - [ 모달 데이터 전달 ] (0) | 2022.07.03 |
---|---|
JS - [ parentNode parentElement 차이 ] (0) | 2022.06.30 |
JS - [ 카카오 맵 API ] (0) | 2022.05.31 |
JS - [ CSV 파일 파싱 - 카카오 맵 API에 CGV 좌표 표시 ] (0) | 2022.05.29 |
JS - [ CSV 파일 불러오기 ] (0) | 2022.05.28 |