Document:children 属性
Baseline Widely available
This feature is well established and works across many devices and browser versions. It’s been available across browsers since July 2015.
children
只读属性返回一个实时的 HTMLCollection
,其中包含对调用该属性的文档的所有子元素。
对于 HTML 文档,这通常只有根 <html>
元素。
请参见 Element.children
以获取文档中具体 HTML 元素的子元素。
值
一个 HTMLCollection
,它是当前文档子 DOM 元素的一个实时、有序集合。你可以通过对集合使用 item()
方法,或者使用 JavaScript 数组风格的表示法来访问集合中的单个子节点。
如果文档没有元素子节点,则 children
是一个空列表,其 length
为 0
。
示例
js
document.children;
// HTMLCollection [<html>]
// 通常只包含根 <html> 元素,即文档唯一的直接子元素
请参见 Element.children
以获取文档中具体 HTML 元素的子元素。
规范
Specification |
---|
DOM Standard # ref-for-dom-parentnode-children① |
浏览器兼容性
BCD tables only load in the browser