我希望得到其中包含输入元素的所有TR元素的数量。我该怎么办?
Html:
<tbody>
<tr>
<td>Ignore this item 1</td>
</tr>
<tr>
<td>Ignore this item 2</td>
</tr>
<tr>
<td><input blablabla>... Include this TR...</td>
</tr>
</tbody>
谢谢!
答案 0 :(得分:5)
$('tr:has(input)').length