//全选、反选
$(function () {
$("#all_check").click(function () {
if (this.checked) {
$(".checkbox").each(function () { this.checked = true; });
} else {
$(".checkbox").each(function () { this.checked = false; });
}
});
});
