1 $("#checkAll").change(function () {2 $(this).closest("table")3 .find(":checkbox:not(:first)")4 .prop("checked", this.checked);5 });
本文共 236 字,大约阅读时间需要 1 分钟。
1 $("#checkAll").change(function () {2 $(this).closest("table")3 .find(":checkbox:not(:first)")4 .prop("checked", this.checked);5 });
转载于:https://www.cnblogs.com/willingtolove/p/4642727.html