gpt4 book ai didi

jquery - 比 jquery 中的选择器更大?

转载 作者:行者123 更新时间:2023-12-01 00:47:09 24 4
gpt4 key购买 nike

我有一个表,其中有一些行。

这是我的表格的示例,只是表格行少了很多。

<table>
<tr>
<td>bob</td>
<td class="CheckThis">0 </td>
</tr>
<tr>
<td>Jim</td>
<td class="CheckThis">3</td>
</tr>
</table>

现在我想查看第二个表格单元格并获取值大于 0 的行。

因此,在上面的示例中,它将获取包含“3”的整行,因为它大于零。

我没有看到任何扇区比 jquery 中的某些扇区做得更好,但我可能错过了它。

谢谢

最佳答案

试试这个:

$("tr").filter(function() {
return parseInt($(this).children("td.CheckThis").text(), 10) > 0;
})

这将选择每个具有 TD 子元素且内容大于 0 的 CheckThis 子元素的 TR 元素。

关于jquery - 比 jquery 中的选择器更大?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2035015/

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