$("#ChkAllOffice").click(function() {
var checked_status = this.checked;
$("input[id*='ChkOffice']").each(function() {
this.checked = checked_status;
});
});
$("#ChkAllOffice").click(function() {
相关文章: