Checkbox - Jquery - Check All / Select All

 

            $("#ChkAllOffice").click(function() {

                var checked_status = this.checked;
                $("input[id*='ChkOffice']").each(function() {
                    this.checked = checked_status;
                });
            });
posted @ 2009-12-23 11:11  Benny Ng  阅读(401)  评论(0编辑  收藏  举报