jQuery取消选中带有name属性的复选框

时间:2014-03-09 07:17:17

标签: jquery html

在HTML页面上,我有一个名为property的复选框。我无法使用name属性取消选中它。

HTML:

<input type="checkbox" value="1" name="show_static_notify">

jQuery:

$("input[name='show_static_notify']:checkbox:not(:checked)");

7 个答案:

答案 0 :(得分:10)

使用.prop()

$("input[name='show_static_notify']:checkbox").prop('checked',false);

Fiddle Demo

答案 1 :(得分:1)

您正在做的是找到具有给定名称的未选中复选框

要取消选中该复选框,请使用.prop()

$("input[name='show_static_notify']").prop('checked', false);

答案 2 :(得分:1)

使用.removeAttr()

$("input[name='show_static_notify']:checkbox").removeAttr('checked');

.prop()

$("input[name='show_static_notify']:checkbox").prop('checked',false);

答案 3 :(得分:0)

$("input[name='show_static_notify']:checkbox").prop('checked',false);

答案 4 :(得分:0)

这对我有用..

$('input[type="checkbox"][name="selectedIds\\[\\]"]:checked').prop('checked',false);

答案 5 :(得分:0)

试试这个,这对我有用

$(&#39;输入[type = checkbox] [name = show_static_notify]&#39;)。prop(&#39; checked&#39;,false);

答案 6 :(得分:0)

这对我有用:

const fs = require('fs');

const list_in_list = [[[1, 1], [2, 2]], [[2, 2], [1, 1]]]

fs.writeFile('sampletextfile.txt', JSON.stringify(list_in_list[1]), function (err) {
  if (err) throw err;
  console.log('Saved!');
});