jquery实现 复选框 全选

1     $("#checkAll").change(function () {
2         $(this).closest("table")
3                .find(":checkbox:not(:first)")
4                .prop("checked", this.checked);
5     });

 

posted @ 2015-07-13 14:03  willingtolove  阅读(420)  评论(0编辑  收藏  举报