jquery实现 复选框 全选
1 $("#checkAll").change(function () { 2 $(this).closest("table") 3 .find(":checkbox:not(:first)") 4 .prop("checked", this.checked); 5 });
作者:willingtolove
出处:http://www.cnblogs.com/willingtolove/
本文版权归作者和博客园共有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出原文连接,否则保留追究法律责任的权利。