1

私はjQuery Datatableを使用しています。チェックボックスの列が必要で、ヘッダーにはすべて選択のチェックボックスが含まれている必要があります。これに関する詳細は、datatable の公式サイトでは見つかりませんでした。

誰か助けてくれませんか?

ありがとう。

4

2 に答える 2

0

以下のような行を持つことができます

<tr>
<th><input type="checkbox" id="selectall"/></th>
<th>Cell phone</th>
<th>Rating</th>

と接続するためのjquery

<SCRIPT language="javascript">
$(function(){

// add multiple select / deselect functionality
$("#selectall").click(function () {
      $('.case').attr('checked', this.checked);
});

// if all checkbox are selected, check the selectall checkbox
// and viceversa
$(".case").click(function(){

    if($(".case").length == $(".case:checked").length) {
        $("#selectall").attr("checked", "checked");
    } else {
        $("#selectall").removeAttr("checked");
    }

    });
   });
  </SCRIPT>
于 2015-12-16T15:40:48.127 に答える