제이쿼리

체크 박스 전부 선택 및 전부 삭제 예제

칩사마코더 2017. 6. 16. 04:47

//- 체크 박스 전부 선택

$('.total_check').click(function(e){

// Iterate each checkbox

if(this.checked){

$(':checkbox').each(function() {

this.checked = true;

});

}else{

$(':checkbox').each(function() {

this.checked = false;

})

}

});