gpt4 book ai didi

jquery - 更改多个复选框的选中属性

转载 作者:行者123 更新时间:2023-12-01 02:35:23 25 4
gpt4 key购买 nike

我想使用 jQuery 设置 checked 属性

如何做到这一点?

 var arr = new Array(1, 2, 3);

<input type="checkbox" name="chk" value="1"/>
<input type="checkbox" name="chk" value="2"/>
<input type="checkbox" name="chk" value="3"/>
<input type="checkbox" name="chk" value="4"/>
<input type="checkbox" name="chk" value="5"/>
<input type="checkbox" name="chk" value="6"/>
<input type="checkbox" name="chk" value="7"/>

我想在复选框中找到 arr eq 值...

           <input type="checkbox" name="chk" value="1" checked/>
<input type="checkbox" name="chk" value="2" checked/>
<input type="checkbox" name="chk" value="3" checked/>
<input type="checkbox" name="chk" value="4"/>
<input type="checkbox" name="chk" value="5"/>
<input type="checkbox" name="chk" value="6"/>
<input type="checkbox" name="chk" value="7"/>

最佳答案

for (var count = 0; count < arr.length; count++) {
$("input[type='checkbox'][value='" + arr[count] + "']").attr("checked", true);
}

演示:http://jsfiddle.net/vfXZy/

关于jquery - 更改多个复选框的选中属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7209703/

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