jQuery:选择最后一个孩子

时间:2015-09-09 08:26:58

标签: jquery jquery-selectors

我需要选择最后一个表元素的所有子元素。

我已经尝试过这样的事情:

th:last-children

非常感谢你。

2 个答案:

答案 0 :(得分:1)

此行应该有效:

$('th:last').children();

答案 1 :(得分:0)

th:last-children将选择容器中最后一个子项。您需要使用th:last定位最后一个元素以及.children()以获取其直接子元素:

$('th:last').children();

$('th:last > *');