我有一系列基于部分的幻灯片:
<div id="slides">
<section id="first">
<section>
<table>
<thead>
</thead>
<tbody>
<tr id="somethingUnique">
...
</tr>
</tbody>
</table>
</section>
<section>
<table>
<thead>
</thead>
<tbody>
<tr id="somethingUnique">
...
</tr>
</tbody>
</table>
</section>
...
</section>
</div>
我需要从#first 部分的最后一部分的表中选择获取最后一行的ID。
我正在使用以下 Jquery,得到“未定义”……有什么想法吗?
var lastListItem = $('#first:last-child table>tbody>tr:last').attr("id");
alert(lastListItem);