DOM replaceChild() 메서드는 자식 노드를 HTML 문서의 새 노드로 바꿉니다.
구문
다음은 구문입니다 -
node.replaceChild(newNode,oldNode);
예시
replaceChild() 메서드의 예를 살펴보겠습니다. -
<!DOCTYPE html> <html> <head> <style> html{ height:100%; } body{ text-align:center; color:#fff; background: #ff7f5094; 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:35%; margin:2rem auto; display:block; color:#fff; outline:none; cursor:pointer; } .show{ font-size:1.5rem; } </style> </head> <body> <h1>DOM replaceChild() Method Demo</h1> <p>Hi, My favourite subjects are:</p> <ul id="subjectList"> <li>Physics</li> <li id="chemistry">Chemistry</li> <li>Maths</li> <li>English</li> </ul> <button onclick="changeSubject()" class='btn'>Change Physics to Biology</button> <script> function changeSubject() { var textnode = document.createTextNode("Biology"); var list = document.getElementById("subjectList"); list.replaceChild(textnode, list.childNodes[0]); } </script> </body> </html>
출력
이것은 다음과 같은 출력을 생성합니다 -
"파란색 ” 버튼을 눌러 주제 목록의 첫 번째 하위 항목을 대체합니다. -