반응형

            $('.chkAll').clickfunction() {

              $('.chkbx').prop'checked'this.checked );

            });

 

            $(".chkbx").bind("click"function(){

                    var pid=$(this).attr("id");

                    var ischeck=this.checked;

                $(".chkbx").each(function(){

                    var tid=$(this).attr("id");

                    if(tid.indexOf(pid) != -1){

                        $("#"+tid).prop('checked'ischeck );

                    }

                });

            });

 

위에건 전체 선택...

 

아래건 선택한 체크박스의 하위 체크박스까지 모두 체크함.

 

대신 아이디에 부모 아이디가 포함돼 있어야함.

반응형

+ Recent posts