title | short-title | slug | l10n | ||
---|---|---|---|---|---|
Document: childElementCount プロパティ |
childElementCount |
Web/API/Document/childElementCount |
|
{{ APIRef("DOM") }}
Document.childElementCount
は読み取り専用のプロパティで、文書の子要素の数を返します。
特定の要素の子要素の数を取得する場合は、{{domxref("Element.childElementCount")}} を参照してください。
数値です。
document.children;
// HTMLCollection で、ふつうは <html> 要素をこの文書の唯一の子として含んでいる
document.childElementCount;
// 1
{{Specifications}}
{{Compat}}
- {{domxref("Element.childElementCount")}}
- {{domxref("DocumentFragment.childElementCount")}}