此页面由社区从英文翻译而来。了解更多并加入 MDN Web Docs 社区。

View in English Always switch to English

Node:lastChild 属性

Baseline Widely available

This feature is well established and works across many devices and browser versions. It’s been available across browsers since ⁨2016年3月⁩.

Node 接口的 lastChild 只读属性返回节点的最后一个子节点,如果没有子节点,则返回 null

备注: 此属性返回作为此节点最后一个子节点的任何类型的节点。它可能是 TextComment 节点。如果你要获取另一个元素的最后一个 Element 子元素,可以考虑使用 Element.lastElementChild

作为节点最后一个子节点的 Node,如果没有子节点,则为 null

示例

js
const tr = document.getElementById("row1");
const corner_td = tr.lastChild;

规范

Specification
DOM
# ref-for-dom-node-lastchild①

浏览器兼容性

参见