チェックボックス複数選択の上限制御
チェックボックスで選択できる数を制限
jQuery
$(function () {
$('input').click(function() {
var checked_length = $('input:checked').length;
// 選択上限は3つまで
if (checked_length >= 3) {
$('input:not(:checked)').prop('disabled', true);
} else {
$('input:not(:checked)').prop('disabled', false);
}
});
});
サンプル