Node:lastChild 属性

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

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

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

示例

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

规范

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

浏览器兼容性

BCD tables only load in the browser

参见