aboutsummaryrefslogtreecommitdiff
path: root/files/ja/orphaned/web/api/parentnode/children/index.html
blob: 537c91d1c6380a8623c3a778a1bced282e836804 (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
---
title: ParentNode.children
slug: orphaned/Web/API/ParentNode/children
tags:
  - API
  - Child
  - Child Nodes
  - DOM
  - HTMLCollection
  - Node
  - ParentNode
  - Property
  - children
translation_of: Web/API/ParentNode/children
original_slug: Web/API/ParentNode/children
---
<div>{{ APIRef("DOM") }}</div>

<p>{{domxref("ParentNode")}} の <strong><code>children</code></strong> プロパティは、呼び出された際のノードの子{{domxref("Element", "要素", "", 1)}}ノードをすべて含んだ動的な(生きている) {{domxref("HTMLCollection")}} を返す、読み取り専用プロパティです。</p>

<h2 id="Syntax" name="Syntax">構文</h2>

<pre class="syntaxbox notranslate">let <em>children</em> = <var>node</var>.children;</pre>

<h3 id="Value" name="Value"></h3>

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

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

<h2 id="Example" name="Example">例 </h2>

<pre class="brush: js notranslate">const foo = document.getElementById('foo');
for (let i = 0; i &lt; foo.children.length; i++) {
  console.log(foo.children[i].tagName);
}</pre>

<h2 id="Polyfill" name="Polyfill">Polyfill</h2>

<pre class="brush: js notranslate">// Overwrites native 'children' prototype.
// Adds Document &amp; DocumentFragment support for IE9 &amp; Safari.
// Returns array instead of HTMLCollection.
;(function(constructor) {
  if (constructor &amp;&amp;
    constructor.prototype &amp;&amp;
    constructor.prototype.children == null) {
    Object.defineProperty(constructor.prototype, 'children', {
      get: function() {
        let i = 0, node, nodes = this.childNodes, children = [];
        while (node = nodes[i++]) {
          if (node.nodeType === 1) {
            children.push(node);
          }
        }
        return children;
      }
    });
  }
})(window.Node || window.Element);
</pre>

<h2 id="Specification" name="Specification">仕様</h2>

<table class="standard-table">
 <tbody>
  <tr>
   <th scope="col">仕様</th>
   <th scope="col">状態</th>
   <th scope="col">コメント</th>
  </tr>
  <tr>
   <td>{{SpecName('DOM WHATWG', '#dom-parentnode-children', 'ParentNode.children')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td>初めての定義</td>
  </tr>
 </tbody>
</table>

<h2 id="Browser_compatibility" name="Browser_compatibility">ブラウザー実装状況</h2>

<p>{{Compat("api.ParentNode.children")}}</p>

<h2 id="See_also" name="See_also">関連情報</h2>

<ul>
 <li>{{domxref("ParentNode")}} および {{domxref("ChildNode")}} インターフェイス</li>
 <li>
  <div class="syntaxbox">このインターフェイスを実装する次のオブジェクトタイプ。{{domxref("Document")}}{{domxref("Element")}}、 および {{domxref("DocumentFragment")}}</div>
 </li>
 <li>
  <div class="syntaxbox">{{domxref("Node.childNodes")}}</div>
 </li>
</ul>