DOM에서 요소를 교체하는 것은 웹 개발에서 일반적인 작업일 수 있습니다. 예를 들어 요소. 이는 다양한 방법을 사용하여 달성할 수 있지만 가장 간단하고 안정적인 접근 방식은 replacementChild() 함수를 활용하는 것입니다.
replaceChild() 사용:
replaceChild( ) 함수를 사용하면 기존 DOM 요소를 새 요소로 바꿀 수 있습니다. 삽입할 새 요소와 교체할 요소라는 두 가지 인수를 사용합니다.
<code class="javascript">// Get the element you want to replace var elementToReplace = document.getElementById("myAnchor"); // Create the new element var newElement = document.createElement("span"); newElement.innerHTML = "replaced anchor!"; // Replace the old element with the new one elementToReplace.parentNode.replaceChild(newElement, elementToReplace);</code>
이 코드 조각은 텍스트 내용이 "교체된 앵커!"인 요소입니다. 새 요소는 DOM 트리의 원래 요소와 동일한 위치에 삽입됩니다.
replaceChild() 함수를 사용하면 전체 요소를 다시 로드하지 않고도 웹 페이지의 마크업 구조를 효율적이고 동적으로 수정할 수 있습니다. 문서.
위 내용은 DOM 요소를 JavaScript로 대체하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!