我試圖切換使用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);
});
});
請擴大您的答案。 –