IT/UI | UX
[UI] input checkbox 체크 ui + 모두 선택, 하나만 선택 ui
아랄라랄라
2020. 8. 24. 14:51
//개인정보 모두 체크
$('#f_all').on('click', function () {
let chkAll = $('input[type="checkbox"]');
if ($("#f_all").prop("checked")) {
chkAll.prop("checked", true);
} else {
chkAll.prop("checked", false);
}
});
//개인정보 부분 체크
$('.chk input[type="checkbox"]').on('click', function () {
$('#f_all').prop('checked', false);
let chk = $('.chk').length;
let chkInput = $('.chk input[type="checkbox"]:checked').length;
if (chk == chkInput) {
$('#f_all').prop('checked', true);
}
});
728x90