如何更新所有页面更新状态中所有选择复选框的状态

时间:2019-06-10 07:03:27

标签: jquery datatables codeigniter-3

jQuery:

$(document).ready(function() {
  var table = $('#mytable').DataTable();
  $('.checkall').click(function() {
    table.column(0).nodes().to$().each(function(index) {
      $(this).find('.checkbox').attr("checked", true);
    });
    table.draw();
  });

  $('.uncheckall').click(function() {
    table.column(0).nodes().to$().each(function(index) {
      $(this).find('.checkbox').attr("checked", false);
    });
    table.draw();
  });
});

0 个答案:

没有答案