gpt4 book ai didi

javascript - 将复选框设置为选中前 2 个表行中的输入字段

转载 作者:行者123 更新时间:2023-11-28 13:31:57 28 4
gpt4 key购买 nike

我想将复选框设置为检查表的前 2 个表行中的输入字段。

标记

<tbody>
<tr>
<td>
<input type="checkbox" id="" class="checkinput financeOption"><!--want this checked on page load-->
</td>
<td class="datatd">
<label id="">Option 1</label>
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="" class="checkinput financeOption"><!--want this checked on page load-->
</td>
</td>
<td class="datatd"><label id="">Option 2 </label>
</td>
</tr>
<tr>
<td>
<input type="checkbox" id="" class="checkinput financeOption">
</td>
<td class="datatd"><label id="">Option 3</label>
</td>
</tr>

我知道我可以使用 $( "").prop('checked', true);设置属性,但很难弄清楚如何定位前 2 个属性。

谢谢

最佳答案

您可以使用例如nth-child(-n+2)选择器:

$('table tr:nth-child(-n+2) :checkbox').prop('checked', true);

http://jsfiddle.net/B8h7N/

关于javascript - 将复选框设置为选中前 2 个表行中的输入字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24151395/

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