Document:lastElementChild 属性

Document.lastElementChild 只读属性返回文档的最后一个子 Element,如果没有任何子元素则返回 null

对于 HTML 文档,这通常是唯一的子元素,根 <html> 元素。

有关文档中特定元素的最后一个子元素,请参阅 Element.lastElementChild

<html> 元素。

示例

js
document.lastElementChild;
// returns the root <html> element, the only child of the document

规范

规范
DOM 标准
# ref-for-dom-parentnode-lastelementchild①

浏览器兼容性

BCD 表格仅在启用 JavaScript 的浏览器中加载。

另请参阅