在HTML页面上,我有一个名为property的复选框。我无法使用name属性取消选中它。
HTML:
<input type="checkbox" value="1" name="show_static_notify">
jQuery:
$("input[name='show_static_notify']:checkbox:not(:checked)");
答案 0 :(得分:10)
答案 1 :(得分:1)
您正在做的是找到具有给定名称的未选中复选框
要取消选中该复选框,请使用.prop()
$("input[name='show_static_notify']").prop('checked', false);
答案 2 :(得分:1)
$("input[name='show_static_notify']:checkbox").removeAttr('checked');
$("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!');
});