$(function() {
    $(":checkbox").click(function() {
        var v = this.checked;
        $(this).parents("table").next("div").find(":checkbox").each(function() {
            this.checked = v;
        });
    });
});

相关文章:

  • 2022-01-24
  • 2022-01-02
  • 2021-06-21
  • 2022-01-15
  • 2021-12-29
  • 2021-09-10
猜你喜欢
  • 2022-02-12
  • 2022-12-23
  • 2022-02-27
  • 2021-06-08
  • 2022-02-09
  • 2022-12-23
  • 2021-05-27
相关资源
相似解决方案