aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/element/children/index.md
blob: 01e0dc66276f4232f64dd41dd8209ea73cb17ccc (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
---
title: Element.children
slug: Web/API/Element/children
tags:
  - API
  - DOM
  - Element
  - HTMLCollection
  - プロパティ
  - children
browser-compat: api.Element.children
translation_of: Web/API/Element/children
original_slug: Web/API/ParentNode/children
---
{{ APIRef("DOM") }}

**`children`** は読み取り専用のプロパティで、生きた {{domxref("HTMLCollection")}} で呼び出された要素の子{{domxref("Element", "要素", "", 1)}}をすべて返します。

`Element.children` は要素のノードしか含みません。すべての子ノード、例えばテキストやコメントノードなどを取得するには、 {{domxref("Node.childNodes")}} を使用してください。

## 構文

```js
// ゲッター
collection = myElement.children;

// セッターはありません。読み取り専用プロパティです。
```

### 返値

生きた {{ domxref("HTMLCollection") }} で、 `node` の子の DOM 要素の順序付きコレクションを返します。コレクションの {{domxref("HTMLCollection.item()", "item()")}} メソッドか、 JavaScript の配列スタイルの記法を使って、コレクション内の個々の子ノードにアクセスすることができます。

ノードが子要素を持たない場合、 `children` は要素を含まず、`length` は `0` です。

## 例

```js
const myElement = document.getElementById('foo');
for (let i = 0; i < myElement.children.length; i++) {
  console.log(myElement.children[i].tagName);
}
```

## 仕様書

{{Specifications}}

## ブラウザーの互換性

{{Compat}}

## 関連情報

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