blob: 07288eb53716935cfca75bdbd41085a2b3aff794 (
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
|
---
title: ChildNode.remove()
slug: orphaned/Web/API/ChildNode/remove
tags:
- API
- ChildNode
- DOM
- Experimental
- Method
translation_of: Web/API/ChildNode/remove
original_slug: Web/API/ChildNode/remove
---
<div>{{APIRef("DOM")}}</div>
<p><code><strong>ChildNode.remove()</strong></code> は所属するツリーからオブジェクトを削除します。</p>
<h2 id="Syntax" name="Syntax">構文</h2>
<pre class="syntaxbox notranslate"><var>node</var>.remove();
</pre>
<h2 id="Example" name="Example">例</h2>
<h3 id="Using_remove" name="Using_remove"><code>remove()</code> の使用</h3>
<pre class="brush: html notranslate"><div id="div-01">Here is div-01</div>
<div id="div-02">Here is div-02</div>
<div id="div-03">Here is div-03</div>
</pre>
<pre class="brush: js notranslate">var el = document.getElementById('div-02');
el.remove(); // 'div-02' の id を持った div を削除
</pre>
<h3 id="ChildNode.remove_is_unscopable" name="ChildNode.remove_is_unscopable"><code>ChildNode.remove()</code> はスコーピングに非対応</h3>
<p><code>remove()</code> メソッドは <code>with</code> 文でのスコーピングに対応していません。 詳細は {{jsxref("Symbol.unscopables")}} をご覧ください。</p>
<pre class="brush: js notranslate">with(node) {
remove();
}
// ReferenceError: remove is not defined </pre>
<h2 id="Polyfill" name="Polyfill">ポリフィル</h2>
<p>以下のポリフィルで、Internet Explorer 9 以降でも <code>remove()</code> メソッドが利用できます。</p>
<pre class="brush: js notranslate">// from:https://github.com/jserz/js_piece/blob/master/DOM/ChildNode/remove()/remove().md
(function (arr) {
arr.forEach(function (item) {
if (item.hasOwnProperty('remove')) {
return;
}
Object.defineProperty(item, 'remove', {
configurable: true,
enumerable: true,
writable: true,
value: function remove() {
this.parentNode.removeChild(this);
}
});
});
})([Element.prototype, CharacterData.prototype, DocumentType.prototype]);</pre>
<h2 id="Specifications" name="Specifications">仕様書</h2>
<table class="standard-table">
<thead>
<tr>
<th scope="col">仕様書</th>
<th scope="col">状態</th>
<th scope="col">備考</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{SpecName('DOM WHATWG', '#dom-childnode-remove', 'ChildNode.remove')}}</td>
<td>{{Spec2('DOM WHATWG')}}</td>
<td>初回定義</td>
</tr>
</tbody>
</table>
<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザーの対応</h2>
<div class="hidden">このページの互換性一覧表は構造化データから生成されています。データに協力していただけるのであれば、 <a class="external" href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> をチェックアウトしてプルリクエストを送信してください。</div>
<p>{{Compat("api.ChildNode.remove")}}</p>
<h2 id="See_also" name="See_also">関連情報</h2>
<ul>
<li>{{domxref("ChildNode")}} インターフェイス</li>
<li>
<div class="syntaxbox">このインターフェイスを実装したオブジェクト型: {{domxref("CharacterData")}}、 {{domxref("Element")}}、{{domxref("DocumentType")}}</div>
</li>
</ul>
|