blob: b058cc4c99fbc1e2e7a52dd130dbc357a5b56baf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
---
title: Node.replaceChild()
slug: Web/API/Node/replaceChild
tags:
- 노드 교체
- 돔 조작
- 자바스크립트
translation_of: Web/API/Node/replaceChild
---
<div>
<div>{{APIRef("DOM")}}</div>
</div>
<p><strong><code>Node.replaceChild()</code></strong> 메소드는 특정 부모 노드의 한 자식 노드를 다른 노드로 교체합니다.</p>
<h2 id="Syntax" name="Syntax">Syntax</h2>
<pre class="syntaxbox"><em>replacedNode</em> = <em>parentNode</em>.replaceChild(<em>newChild</em>, <em>oldChild</em>);
</pre>
<ul>
<li><code>newChild는 oldChild를 교체할 새로운 노드입니다. 만약 이미 </code>DOM<code> 안에 존재한다면 가장 먼저 제거됩니다.</code></li>
<li><code>oldChild는 이미 존재하는, 교체될 자식 노드입니다.</code></li>
<li><code>replacedNode는 교체된 노드입니다. oldChild와 동일한 노드입니다.</code></li>
</ul>
<h2 id="Example" name="Example">Example</h2>
<pre class="brush:js">// <div>
// <span id="childSpan">foo bar</span>
// </div>
// 텅빈 요소 노드를 하나 생성합니다.
// ID도, 속성도, 컨텐츠도 없습니다.
var sp1 = document.createElement("span");
// 'newSpan'이란 id 속성을 부여합니다.
sp1.id = "newSpan";
// 새로운 요소를 위한 컨텐츠를 생성합니다.
var sp1_content = document.createTextNode("new replacement span element.");
// 컨텐츠를 생성한 요소에 붙입니다.
sp1.appendChild(sp1_content);
// DOM에 존재하던, 교체되야할 노드를 참조합니다.
var sp2 = document.getElementById("childSpan");
var parentDiv = sp2.parentNode;
// 이미 존재하던 sp2 노드를 새로운 span 요소인 sp1으로 교체합니다.
parentDiv.replaceChild(sp1, sp2);
// 결과:
// <div>
// <span id="newSpan">new replacement span element.</span>
// </div>
</pre>
<h2 id="Specification" name="Specification">Specification</h2>
<ul>
<li><a href="http://www.w3.org/TR/REC-DOM-Level-1/level-one-core.html#method-replaceChild">DOM Level 1 Core: replaceChild</a></li>
<li><a href="http://www.w3.org/TR/DOM-Level-2-Core/core.html#ID-785887307">DOM Level 2 Core: replaceChild</a></li>
<li><a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#ID-785887307">DOM Level 3 Core: replaceChild</a></li>
</ul>
<h2 id="See_also" name="See_also">See also</h2>
<ul>
<li>{{domxref("Node.removeChild")}}</li>
</ul>
|