获取表的eq()和nth-child

时间:2015-05-14 21:42:10

标签: javascript jquery html

我有下表:

<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状态。

感谢任何帮助。

感谢。

1 个答案:

答案 0 :(得分:3)

您可以链接调用以在元素中查找子项:

$(#'some-table tbody tr').eq(0).find('th').eq(2)

您还可以在选择器中使用:eq伪类:

$(#'some-table tbody tr:eq(0) th:eq(2)')