jquery – 获取具有特定值的复选框

前端之家收集整理的这篇文章主要介绍了jquery – 获取具有特定值的复选框前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我想获得具有特定价值的复选框,并使其检查..

我这样做

$(":checkBox").filter({"value":5}).attr("checked","true");​

这里是html

​<input type="checkBox" name="priv"​​​​​​​​​​​​​​​​​​​​​​​​​​​​​ value="1"​​​​​​​​​​​​​​​​​/>
<input type="checkBox" name="priv" value="2"/>
<input type="checkBox" name="priv" value="3"/>
<input type="checkBox" name="priv" value="4"/>
<input type="checkBox" name="priv" value="5"/>
<input type="checkBox" name="priv" value="6"/>
<input type="checkBox" name="priv" value="7"/>
 <input type="checkBox" name="priv" value="8"/>​

这是一个demo的问题

解决方法

您可以使用 Attribute Equals Selector [name=”value”]获得具有特定价值的复选框。也可以使用 prop()而不是 attr(),因为这是 jQuery doc推荐的方式。

Live Demo

$(":checkBox[value=4]").prop("checked","true");

要么

$("input[type=checkBox][value=5]").prop("checked",true);

说明:选择具有指定属性的元素,其值等于特定值jQuery doc

您也可以使用attr(),但是prop更适合布尔属性

$(":checkBox[value=4]").attr("checked","true");

As of jQuery 1.6,the .attr() method returns undefined for attributes that have not been set. To retrieve and change DOM properties such as the checked,selected,or disabled state of form elements,use the .prop() method,07003

原文链接:https://www.f2er.com/jquery/181765.html

猜你在找的jQuery相关文章