From 156b518735b8da6cc954105b0a1250ca31449381 Mon Sep 17 00:00:00 2001 From: MDN Date: Sat, 22 May 2021 00:42:07 +0000 Subject: [CRON] sync translated content --- .../orphaned/web/api/childnode/remove/index.html | 97 ++++++++++++++++++++++ 1 file changed, 97 insertions(+) create mode 100644 files/ja/orphaned/web/api/childnode/remove/index.html (limited to 'files/ja/orphaned') diff --git a/files/ja/orphaned/web/api/childnode/remove/index.html b/files/ja/orphaned/web/api/childnode/remove/index.html new file mode 100644 index 0000000000..07288eb537 --- /dev/null +++ b/files/ja/orphaned/web/api/childnode/remove/index.html @@ -0,0 +1,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 +--- +
{{APIRef("DOM")}}
+ +

ChildNode.remove() は所属するツリーからオブジェクトを削除します。

+ +

構文

+ +
node.remove();
+
+ +

+ +

remove() の使用

+ +
<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>
+
+ +
var el = document.getElementById('div-02');
+el.remove(); // 'div-02' の id を持った div を削除
+
+ +

ChildNode.remove() はスコーピングに非対応

+ +

remove() メソッドは with 文でのスコーピングに対応していません。 詳細は {{jsxref("Symbol.unscopables")}} をご覧ください。

+ +
with(node) {
+  remove();
+}
+// ReferenceError: remove is not defined 
+ +

ポリフィル

+ +

以下のポリフィルで、Internet Explorer 9 以降でも remove() メソッドが利用できます。

+ +
// 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]);
+ +

仕様書

+ + + + + + + + + + + + + + + + +
仕様書状態備考
{{SpecName('DOM WHATWG', '#dom-childnode-remove', 'ChildNode.remove')}}{{Spec2('DOM WHATWG')}}初回定義
+ +

ブラウザーの対応

+ + + +

{{Compat("api.ChildNode.remove")}}

+ +

関連情報

+ + -- cgit v1.2.3-54-g00ecf