gpt4 book ai didi

jquery - 选择具有特殊属性值的特殊索引

转载 作者:行者123 更新时间:2023-11-28 14:35:35 27 4
gpt4 key购买 nike

考虑这段代码:

<table border="1" width="100%" id="list">
<tr>
<th>name</th>
<th>age</th>
<th>city</th>
</tr>
<tr>
<td o="1">aaa</td>
<td o="2">20</td>
<td o="3">zzzzzzzz</td>
</tr>
<tr>
<td o="2">hhhhhhh</td>
<td o="3">55</td>
<td o="1">aaaaaaa</td>
</tr>
<tr>
<td o="3">qqqqq</td>
<td o="1">15</td>
<td o="2">qq</td>
</tr>
</table>

我如何选择包含 TD 且属性 (o=2) 出现在 N 列 中的 ROW (TR)?!

我尝试了这个但是没有用:

$("table#list tr").filter(':has(td:eq(0)[o="2"])')...

最佳答案

试试这个

$("table#list tr").filter(function(){
return $(this).find("td:nth-child(1)[o='2']").length > 0;
//nth-child is indexed from 1
});

关于jquery - 选择具有特殊属性值的特殊索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6778482/

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