gpt4 book ai didi

jquery - 从具有特定数量 td 的表中选择所有 tr

转载 作者:行者123 更新时间:2023-12-01 06:24:32 25 4
gpt4 key购买 nike

我有 table

<table>
<tr>
<td colspan="3"></td>
</tr>
<tr> //select this
<td></td>
<td></td>
<td></td>
</tr>
<tr> //select this
<td></td>
<td></td>
<td></td>
</tr>
</table>

因此,对于上表,我想选择包含 3 个 td 的所有 trs

我怎样才能用 jquery 做到这一点?

基本上我需要获取此类行的计数。

最佳答案

您可以使用.filter() [docs] :

$('table tr').filter(function(){
return $(this).children('td').length === 3;
});

通知: @mu's answer更加简洁,并且在现代浏览器中表现更好。我仍然会留下这个答案作为 .filter() 的一般演示。

关于jquery - 从具有特定数量 td 的表中选择所有 tr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7316698/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com