aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/node/parentelement/index.md
blob: 8aa85b65f51fa1a264841fb95f579b03a0fc9222 (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
---
title: Node.parentElement
slug: Web/API/Node/parentElement
tags:
  - プロパティ
  - リファレンス
  - 読み取り専用
browser-compat: api.Node.parentElement
translation_of: Web/API/Node/parentElement
---
{{APIRef("DOM")}}

**`parentElement`** は {{domxref("Node")}} インターフェイスの読み取り専用プロパティで、この DOM ノードの親である要素 ({{DOMxRef("Element")}}) を返します。このノードに親ノードがないか、親が DOM の {{DOMxRef("Element")}} でない場合は `null` を返します。

## 値

現在のノードの親ノードである {{domxref("Element")}} を返します。そのようなものがない場合は `null` を返します。

## 例

```js
if (node.parentElement) {
    node.parentElement.style.color = "red";
}
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

- {{domxref("Node.parentNode")}}