aboutsummaryrefslogtreecommitdiff
path: root/files/ja/web/api/element/childelementcount/index.md
diff options
context:
space:
mode:
Diffstat (limited to 'files/ja/web/api/element/childelementcount/index.md')
-rw-r--r--files/ja/web/api/element/childelementcount/index.md39
1 files changed, 20 insertions, 19 deletions
diff --git a/files/ja/web/api/element/childelementcount/index.md b/files/ja/web/api/element/childelementcount/index.md
index c3520c9a31..1e869a7dc2 100644
--- a/files/ja/web/api/element/childelementcount/index.md
+++ b/files/ja/web/api/element/childelementcount/index.md
@@ -4,39 +4,40 @@ slug: Web/API/Element/childElementCount
tags:
- API
- DOM
- - Property
- - Reference
+ - プロパティ
+ - リファレンス
browser-compat: api.Element.childElementCount
translation_of: Web/API/Element/childElementCount
original_slug: Web/API/ParentNode/childElementCount
---
-<div>{{ APIRef("DOM") }}</div>
+{{ APIRef("DOM") }}
-<p><code><strong>Element.childElementCount</strong></code> は読み取り専用のプロパティで、この要素の子要素の数を返します。</p>
+**`Element.childElementCount`** は読み取り専用のプロパティで、この要素の子要素の数を返します。
-<h2 id="Syntax">構文</h2>
+## 構文
-<pre class="brush: js">element.childElementCount;</pre>
+```js
+element.childElementCount;
+```
-<h2 id="Example">例</h2>
+## 例
-<pre class="brush:js">let sidebar = document.getElementById('sidebar');
-if (sidebar.childElementCount &gt; 0) {
- // 何もしない
+```js
+let sidebar = document.getElementById('sidebar');
+if (sidebar.childElementCount > 0) {
+ // 何かを行う
}
-</pre>
+```
-<h2 id="Specifications">仕様書</h2>
+## 仕様書
{{Specifications}}
-<h2 id="Browser_compatibility">ブラウザーの互換性</h2>
+## ブラウザーの互換性
-<p>{{Compat}}</p>
+{{Compat}}
-<h2 id="See_also">関連情報</h2>
+## 関連情報
-<ul>
- <li>{{domxref("Document.childElementCount")}}</li>
- <li>{{domxref("DocumentFragment.childElementCount")}}</li>
-</ul>
+- {{domxref("Document.childElementCount")}}
+- {{domxref("DocumentFragment.childElementCount")}}