--- title: Element.children slug: Web/API/Element/children translation_of: Web/API/Element/children tags: - API - DOM - Element - HTMLCollection - Property - children browser-compat: api.Element.children ---
{{ APIRef("DOM") }}
Element.children
是一个只读属性,返回 一个Node的子{{domxref("Element","elements")}} ,是一个动态更新的 {{domxref("HTMLCollection")}}。
var children = node.children;
var elList = elementNodeReference.children;
children
属性为只读属性,对象类型为 {{ domxref("HTMLCollection") }},你可以使用 elementNodeReference.children[1].nodeName
来获取某个子元素的标签名称。
// parg是一个指向<p>元素的对象引用 if (parg.childElementCount) // 检查这个<p>元素是否有子元素 // 译者注:childElementCount有兼容性问题 { var children = parg.children; for (var i = 0; i < children.length; i++) { // 通过children[i]来获取每个子元素 // 注意:List是一个live的HTMLCollection对象,在这里添加或删除parg的子元素节点,都会立即改变List的值. }; };
Specification | Status | Comment |
---|---|---|
{{SpecName('DOM WHATWG', '#dom-Element-children', 'Element.children')}} | {{Spec2('DOM WHATWG')}} | Initial definition. |