aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/parentnode/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/node/parentnode/index.md')
-rw-r--r--files/ja/web/api/node/parentnode/index.md47
1 files changed, 47 insertions, 0 deletions
diff --git a/files/ja/web/api/node/parentnode/index.md b/files/ja/web/api/node/parentnode/index.md
new file mode 100644
index 0000000000..d50c111b37
--- /dev/null
+++ b/files/ja/web/api/node/parentnode/index.md
@@ -0,0 +1,47 @@
+---
+title: Node.parentNode
+slug: Web/API/Node/parentNode
+tags:
+ - プロパティ
+ - リファレンス
+ - 読み取り専用
+browser-compat: api.Node.parentNode
+translation_of: Web/API/Node/parentNode
+---
+{{APIRef("DOM")}}
+
+**`parentNode`** は {{domxref("Node")}} インターフェイスの読み取り専用プロパティで、 DOM ツリー内の特定のノードの親ノードを返します。
+
+`Document` および `DocumentFragment` [ノード](/ja/docs/Web/API/Node/nodeType)には親が付くことはないので、 `parentNode` は常に `null` になります。
+ノードが生成されてからツリーに割り当てられていない場合も `null` を返します。
+
+## 値
+
+現在のノードの親に当たる {{domxref("Node")}} です。要素の親になるのは `Element` ノード、 `Document` ノード、 `DocumentFragment` ノードの何れかです。
+
+## 例
+
+```js
+if (node.parentNode) {
+ // ノードがツリーの中にある場合は、ツリーから取り除く
+ node.parentNode.removeChild(node);
+}
+```
+
+## 仕様書
+
+{{Specifications}}
+
+## ブラウザーの互換性
+
+{{Compat}}
+
+## 関連情報
+
+- {{Domxref("Node.firstChild")}}
+- {{Domxref("Node.lastChild")}}
+- {{Domxref("Node.childNodes")}}
+- {{Domxref("Node.nextSibling")}}
+- {{Domxref("Node.parentElement")}}
+- {{Domxref("Node.previousSibling")}}
+- {{Domxref("Node.removeChild")}}