我想获得具有特定价值的复选框,并使其检查..
我这样做
$(":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推荐的方式。
$(":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