Document: firstElementChild 属性
Document.firstElementChild
只读属性返回文档的第一个子 Element
,如果不存在子元素则返回 null
。
对于 HTML 文档,这通常是唯一的子元素,即根 <html>
元素。
有关文档中特定元素的第一个子元素,请参见 Element.firstElementChild
。
值
一个 Element
对象,或 null
。
示例
js
document.firstElementChild;
// returns the root <html> element, the only child of the document
规范
规范 |
---|
DOM 标准 # ref-for-dom-parentnode-firstelementchild① |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。