我有下表:
<table id="some-table">
<thead>
<tr>
<th>Name</th>
<th>Type</th>
<th>UI Status</th>
<th>Engine Status</th>
</tr>
</thead>
<tbody>
<tr>
<th>A</th>
<th>1</th>
<th></th>
<th></th>
</tr>
<tr>
<th>B</th>
<th>2</th>
<th></th>
<th></th>
</tr>
</tbody>
</table>
我想将UI状态插入到索引表中。
$(#'some-table tbody tr').eq(0)
会为我提供我想要的行但是如何获得th
中的第3个tr
,以便我可以更新UI状态。
感谢任何帮助。
感谢。
答案 0 :(得分:3)
您可以链接调用以在元素中查找子项:
$(#'some-table tbody tr').eq(0).find('th').eq(2)
您还可以在选择器中使用:eq
伪类:
$(#'some-table tbody tr:eq(0) th:eq(2)')