如何设置jquery中检查的特定值的复选框?

时间:2015-12-23 09:55:21

标签: jquery html

我有HTML元素:

<input class="type_checkbox" id="1" name="types[]" type="checkbox" value="1">
<input class="type_checkbox" id="0" name="types[]" type="checkbox" value="6">

我想用jQuery设置checkbox true,其中value等于6.请帮助。

3 个答案:

答案 0 :(得分:5)

您可以使用属性选择器和prop()来设置checked属性。

$('input.type_checkbox[value="6"]').prop('checked', true);

您可以明显修改选择器的input.type_checkbox部分,以更好地满足您的需求。

答案 1 :(得分:1)

使用属性等于选择器:

$('input.type_checkbox[value=6]').prop('checked', true);

答案 2 :(得分:0)

尝试下面的代码,它应该工作

$(":checkbox[value=6]").prop("checked","true");

$("input[type=checkbox][value=6]").prop("checked",true);​