
DomChildNode::replaceWith 메서드는 DOM 노드의 자식 노드를 교체하는 메서드입니다.
예를 들어, 다음과 같이 HTML 문서를 생성하고 replaceWith 메서드를 사용하여 특정 노드를 다른 노드로 교체할 수 있습니다.
#hostingforum.kr
html
원래 노드
교체할 노드
#hostingforum.kr
javascript
const parent = document.getElementById('parent');
const replaceNode = document.createElement('span');
replaceNode.textContent = '교체된 노드';
// 교체할 노드 선택
const replaceTarget = parent.children[1];
// 교체할 노드 교체
replaceTarget.replaceWith(replaceNode);
위의 예제에서, `replaceTarget` 노드는 `replaceWith` 메서드를 호출하여 `replaceNode` 노드로 교체됩니다.
이러한 방식으로, DOM 노드의 자식 노드를 교체할 수 있습니다.
2025-04-04 21:34