1
2
3
4
5
6
7
8
$("#chkAll").click(function(){
    if($("#chkAll").is(":checked")){
        $("input[name='chkUser']").prop("checked"true);
        }
        else{
        $("input[name='chkUser']").prop("checked"false);
        }
    });
 
cs

chkAll -> 헤더에 있는 체크박스 아이디

 

input type="checkbox" 이고 name ="chkUser" 인 체크박스들을 제어

+ Recent posts