DOM removeChild() 메서드는 HTML 문서에서 지정된 노드의 지정된 자식 노드를 반환하고 제거합니다.
구문
다음은 구문입니다 -
node.removeChild(node);
예시
removeChild() 메소드의 예를 보자 -
<!DOCTYPE html> <html> <head> <style> html{ height:100%; } body{ text-align:center; color:#fff; background: linear-gradient(62deg, #FBAB7E 0%, #F7CE68 100%) center/cover no-repeat; height:100%; } p{ font-weight:700; font-size:1.2rem; } ul{ list-style-type: none; padding:0; } .btn{ background:#0197F6; border:none; height:2rem; border-radius:2px; width:50%; margin:2rem auto; display:block; color:#fff; outline:none; cursor:pointer; } .show{ font-size:1.5rem; font-weight:bold; } </style> </head> <body> <h1>Student Subjects</h1> <p>Hi, My favourite subjects are:</p> <ul id="subjectList"> <li>Physics</li> <li>Chemistry</li> <li>Maths</li> <li>English</li> </ul> <button onclick="removeSubject()" class="btn">Remove Subject</button> <script> function removeSubject() { var subList = document.getElementById("subjectList"); if (subList.hasChildNodes()) { subList.removeChild(subList.childNodes[0]); } } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
"제목 제거를 클릭합니다. " 버튼을 눌러 목록에서 주제를 제거 -