节点:lastChild 属性

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

注意:此属性返回任何类型的节点,只要它是此节点的最后一个子节点即可。它可能是TextComment节点。如果您想获取另一个元素的最后一个Element子节点,请考虑使用Element.lastElementChild

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

示例

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

规范

规范
DOM 标准
# ref-for-dom-node-lastchild①

浏览器兼容性

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

另请参阅