blob: 49eda105e98d2d209b6cd03c303b58a18cce19fd (
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
---
title: Node.replaceChild
slug: Web/API/Node/replaceChild
tags:
- API
- DOM
- Method
- Node
- Reference
translation_of: Web/API/Node/replaceChild
---
<div>{{ApiRef("DOM")}}</div>
<p><strong><code>Node.replaceChild()</code></strong> メソッドは指定ノードの子ノードを別のノードに置き換えます。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox"><var>replacedNode</var> = <var>parentNode</var>.replaceChild(<var>newChild</var>, <var>oldChild</var>);
</pre>
<ul>
<li><code>newChild</code> : <code>oldChild</code> を置き換える新しいノード(既存のノードは先に取り除かれます)</li>
<li><code>oldChild</code> : 置き換えられる既存ノード</li>
<li><code>replacedNode</code> : 置き換えられたノード(<code>oldChild</code> と同じノード)</li>
</ul>
<h2 id="Example" name="Example">例</h2>
<pre class="brush:js">// <div>
// <span id="childSpan">foo bar</span>
// </div>
// ID も属性も内容も持たない空要素を生成
var sp1 = document.createElement("span");
// 生成したノードに id 属性 'newSpan' を付与
sp1.setAttribute("id", "newSpan");
// テキストノードを生成
var sp1_content = document.createTextNode("新しい span 要素");
// 生成したテキストノードを先の空要素の子ノードとして配置
sp1.appendChild(sp1_content);
// 置換に先んじ、参照を代入
var sp2 = document.getElementById("childSpan"); // 既存の置換対象ノード
var parentDiv = sp2.parentNode; // 置換対象ノードの親要素
// 既存ノード "sp2" を 生成済の新しい span 要素 "sp1" と置換
parentDiv.replaceChild(sp1, sp2);
// 上記コード実行後のノードは以下の様になります:
// <div>
// <span id="newSpan">新しい span 要素</span>
// </div>
</pre>
<h2 id="Specification" name="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="Browser_compatibility" name="Browser_compatibility">ブラウザ実装状況</h2>
<p>{{CompatibilityTable}}</p>
<div id="compat-desktop">
<table class="compat-table">
<tbody>
<tr>
<th>機能</th>
<th>Chrome</th>
<th>Firefox (Gecko)</th>
<th>Internet Explorer</th>
<th>Edge</th>
<th>Opera</th>
<th>Safari</th>
</tr>
<tr>
<td>基本サポート</td>
<td>{{CompatChrome(1.0)}}</td>
<td>{{CompatGeckoDesktop(1)}}</td>
<td> IE6 (Maybe Earlier)</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatOpera(1.0)}}</td>
<td>{{CompatVersionUnknown}}</td>
</tr>
</tbody>
</table>
</div>
<div id="compat-mobile">
<table class="compat-table">
<tbody>
<tr>
<th>機能</th>
<th>Android Webview</th>
<th>Firefox Mobile (Gecko)</th>
<th>IE Mobile</th>
<th>Edge Mobile</th>
<th>Opera Mobile</th>
<th>Safari Mobile</th>
<th>Chrome for Android</th>
</tr>
<tr>
<td>基本サポート</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatGeckoMobile(1)}}</td>
<td>IE6 (Maybe Earlier)</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatOperaMobile(1.0)}}</td>
<td>{{CompatVersionUnknown}}</td>
<td>{{CompatChrome(1.0)}}</td>
</tr>
</tbody>
</table>
</div>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("Node.removeChild")}}</li>
</ul>
|