我正在尝试使用 jQuery 切换一些复选框,并且我正在使用在搜索切换复选框时经常推荐的代码,但它似乎只检查它们而不是切换。
这是一个jsfiddle:
的HTML:
<button id="priority-categories" class="btn">Priority</button>
<input type="checkbox" name="category" value="1" id="1">
<input type="checkbox" name="category" value="2" id="2">
<input type="checkbox" name="category" value="3" id="3">
js:
$('#priority-categories').click(function(){
var categories = [1, 3];
$.each(categories, function(key, value) {
$('#' + value).prop('checked', !$('#' + value).checked);
});
});