--- title: Node.childElementCount slug: Web/API/Element/childElementCount tags: - API - DOM - ParentNode - Property - Reference translation_of: Web/API/ParentNode/childElementCount original_slug: Web/API/ParentNode/childElementCount ---

{{ APIRef("DOM") }}

Свойство Node.childElementCount предназначено только для чтения и возвращает число дочерних элементов узла.

Синтаксис

var elCount = Node.childElementCount;

А наш добрый друг Internet Explorer в 6, 7 и 8 версиях ошибочно считает элементами комментарии в HTML-коде ({{domxref("Comment")}}).

Пример

var foo = document.getElementById("foo");
if (foo.childElementCount > 0) {
    // здесь нужный код..
}

Спецификация

{{Specifications}}

Поддержка браузерами

{{Compat("api.Element.childElementCount")}}