所以,我有六个复选框,其中一个被默认选中。用户一次只能检查两个复选框,这很好用。但是,如果选中了默认复选框,则不应选中其他复选框。这就是给我带来问题的原因。我找到了这篇文章并尝试从那里开始工作。
所以,我有 5 个带有 class 的other
复选框和一个带有 id的复选框default
。我的问题是,当没有其他人被检查时,我无法default
检查。
这是一个带有代码的JSFiddle——你们能把我推向正确的方向吗?
这是我的代码:
HTML:
<input type="checkbox" group="checkboxes" name="other" class="other" id="one">
<label for="one">One</label><br />
<input type="checkbox" group="checkboxes" name="other" class="other" id="two">
<label for="two">Two</label><br />
<input type="checkbox" group="checkboxes" name="other" class="other" id="three">
<label for="three">Three</label><br />
<input type="checkbox" group="checkboxes" name="other" class="other" id="four">
<label for="four">Four</label><br />
<input type="checkbox" group="checkboxes" name="other" class="other" id="five">
<label for="five">Five</label><br />
<input group="checkboxes" type="checkbox" checked="checked" name="other" id="default">
<label for="default">Default</label>
jQuery:
$('.other').change(function(){
var c = this.checked ? false : true;
$('#default').attr('checked', c);
});
$(document).ready(function(){
var maxaids = "2";
$(document).on('click', "input[type=checkbox]", function(){
var bol = $("input:checked").length >= maxaids;
$("input[type=checkbox]").not(":checked").attr("disabled",bol);
});
});