3 回答
TA贡献1848条经验 获得超2个赞
使用change事件,您可以执行以下操作:
var limit = 3;
$('input.single-checkbox').on('change', function(evt) {
if($(this).siblings(':checked').length >= limit) {
this.checked = false;
}
});
TA贡献1811条经验 获得超6个赞
尝试这样。
在变更事件中,
$('input[type=checkbox]').on('change', function (e) {
if ($('input[type=checkbox]:checked').length > 3) {
$(this).prop('checked', false);
alert("allowed only 3");
}
});
在JSFiddle中检查一下
TA贡献1863条经验 获得超2个赞
试试这个DEMO:
$(document).ready(function () {
$("input[name='vehicle']").change(function () {
var maxAllowed = 3;
var cnt = $("input[name='vehicle']:checked").length;
if (cnt > maxAllowed)
{
$(this).prop("checked", "");
alert('Select maximum ' + maxAllowed + ' Levels!');
}
});
});
- 3 回答
- 0 关注
- 651 浏览
添加回答
举报