본문 바로가기
javaScript/jQuery

[jQuery] 체크박스(checkBox) 전체선택, 전체해제, 역선택

by mooyou 2022. 8. 30.
728x90
300x250
/* checkbox */
    /* 전체선택 */
    $(".check-all").click(function(){
        $(this).parents('.check-btn').siblings('.check-area').find('input[type=checkbox]').prop('checked',true);
    })
    /* 전체해제 */
    $(".check-none").click(function(){
        $(this).parents('.check-btn').siblings('.check-area').find('input[type=checkbox]').prop('checked',false);
    })
    /* 역선택 */
    $(".check-reverse").click(function () {  
        $(this).parents('.check-btn').siblings('.check-area').find('input[type=checkbox]').each(function () {   
            this.checked = !this.checked;  
        });
    })
728x90
반응형

댓글