嗨我在桌子里面有桌子我还有一张桌子。如何编写jquery选择器以仅获取父表行?
<table class="required_capacity">
<tr>
<td>Row1</td>
<td>Row1</td>
</tr>
<tr>
<td colspan="2">
<table>
<tr>
<td>Some Text ... </td>
</tr>
<tr>
<td>Some Text ... </td>
</tr>
</table>
</td>
</tr>
<tr>
<td>Row 3</td>
<td>Row 3</td>
</tr>
在上面的html代码中,我只需要获得$('。required_capacity')表行。我试过这个选择器来获取行
$('.required_capacity_table').children('tr')
但它也提供了边表行吗?
答案 0 :(得分:7)
答案 1 :(得分:0)
使用它。
$('.required_capacity_table > tr')