aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/element/childelementcount/index.html
blob: a06357d36685da52d6a48833fc177c45c4f03301 (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
94
95
96
---
title: ParentNode.childElementCount
slug: Web/API/Element/childElementCount
tags:
  - API
  - DOM
  - ParentNode
  - Property
translation_of: Web/API/ParentNode/childElementCount
original_slug: Web/API/ParentNode/childElementCount
---
<div>{{ APIRef("DOM") }}</div>

<p>読み取り専用の <code><strong>ParentNode.childElementCount</strong></code> プロパティは、与えられた要素の子要素の数を表す <code>unsigned long</code> 値を返します。</p>

<div class="note">
<p>このプロパティは、当初 {{domxref("ElementTraversal")}} 基本インターフェースで定義されていました。このインターフェースには 2 セットの異なるプロパティが含まれており、一つは子要素を持つ {{domxref("Node")}} を対象とし、もう一つはその子要素群を対象としたものでしたが、これらは 2 つの基本インターフェースである {{domxref("ParentNode")}}{{domxref("ChildNode")}} に移されました。この際、<code>childElementCount</code>{{domxref("ParentNode")}} へ移されました。これは技術的な変更であり、互換性に影響を与えるものではありません。</p>
</div>

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

<pre class="syntaxbox notranslate">var <var>count</var> = <em>node</em>.childElementCount;
</pre>

<dl>
 <dt><code>count</code></dt>
 <dd><code>unsigned long</code> 型(つまり整数型)の戻り値.</dd>
 <dt><code>node</code></dt>
 <dd>{{domxref("Document")}}{{domxref("DocumentFragment")}}{{domxref("Element")}}を表現するオブジェクト.</dd>
</dl>

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

<pre class="brush:js notranslate">var foo = document.getElementById('foo');
if (foo.childElementCount &gt; 0) {
  // Do something
}
</pre>



<h2 id="IE8_IE9Safari向けの互換コード">IE8, IE9/Safari向けの互換コード</h2>

<p>このプロパティは IE9 より前のバージョンでサポートされていません。IE9とSafariでは <code>Document</code><code>DocumentFragment</code> においてサポートされていません。</p>

<pre class="brush:js notranslate">;(function(constructor) {
  if (constructor &amp;&amp;
      constructor.prototype &amp;&amp;
      constructor.prototype.childElementCount == null) {
    Object.defineProperty(constructor.prototype, 'childElementCount', {
      get: function() {
        var i = 0, count = 0, node, nodes = this.childNodes;
        while (node = nodes[i++]) {
          if (node.nodeType === 1) count++;
        }
        return count;
      }
    });
  }
})(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-childElementCount', 'ParentNode.childElementCount')}}</td>
   <td>{{Spec2('DOM WHATWG')}}</td>
   <td><code>ElementTraversal</code> インターフェースを {{domxref("ChildNode")}}<code>ParentNode</code> に分割。このメソッドは後者で定義されています。<br>
    {{domxref("Document")}}{{domxref("DocumentFragment")}} が新しいインターフェースを実装しました。</td>
  </tr>
  <tr>
   <td>{{SpecName('Element Traversal', '#attribute-childElementCount', 'ElementTraversal.childElementCount')}}</td>
   <td>{{Spec2('Element Traversal')}}</td>
   <td>この初期定義は <code>ElementTraversal</code> 基本インターフェースに追加され、{{domxref("Element")}} で使用します。</td>
  </tr>
 </tbody>
</table>

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



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

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

<ul>
 <li>基本インターフェースの {{domxref("ParentNode")}}{{domxref("ChildNode")}}</li>
 <li>この基本インターフェースを実装するオブジェクト型: {{domxref("Document")}}, {{domxref("Element")}}, {{domxref("DocumentFragment")}}</li>
</ul>