gpt4 book ai didi

jquery - 仅选中具有特定值的复选框

转载 作者:行者123 更新时间:2023-12-01 00:45:07 26 4
gpt4 key购买 nike

我试图仅检查具有特定值的复选框。我知道如何获取该值,并且知道如何检查所有复选框,但我不知道如何仅检查那些具有“200”值的复选框

我的示例代码:

<tr>
<td><input class="chk_box" type="checkbox" value="200" /></td>
<td class="code">200</td>
</tr>
<tr>
<td><input class="chk_box" type="checkbox" value="0" /></td>
<td class="code">0</td>
</tr>
<tr>
<td><input class="chk_box" type="checkbox" value="0" /></td>
<td class="code">0</td>
</tr>
<tr>
<td><input class="chk_box" type="checkbox" value="200" /></td>
<td class="code">200</td>
</tr>
<tr>
<td><input class="chk_box" type="checkbox" value="300" /></td>
<td class="code">300</td>
</tr>

<input type="checkbox" class="checkbox_200" label="check 200" />check 200

所以现在我需要 jQuery 代码来完成我的代码。我感谢任何帮助。

顺便说一句。有没有办法一次性检查“200”和“300”?

已更新!

最佳答案

您的复选框没有 value属性,如果要根据TD元素的文本内容勾选复选框,可以使用filter方法。

$('td.code').filter(function(){
var txt = this.textContent || this.innerText;
return txt === '200' || txt === '300';
}).prev().find('input').prop('checked', true);

更新:

$('tr input[type=checkbox][value=200]').prop('checked', true);

替代方案:

$('tr input[type=checkbox]').filter(function(){
return this.value === '200' || this.value === '300';
}).prop('checked', true);

关于jquery - 仅选中具有特定值的复选框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15735959/

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