我试图只检查具有特定值的复选框。我知道如何获取值,我知道如何检查所有复选框,但我不知道如何只检查那些复选框,比如说“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”?
更新!