1

我对 jQuery DataTables 很陌生。我正在寻找一个只显示数字而不是像PreviousNext等选项的分页。我试过这个,但它没有用。

$("#myCsps").dataTable({
  "bFilter": false,
  "bInfo": true,
  "bProcessing": true,
  "sPaginationType": "bootstrap",
  "asStripClasses": null,
  "oLanguage": {
    "sInfo": "Total CSPs: _TOTAL_",
    "oPaginate": {
      "sNext": "",
      "sLast": "",
      "sFirst": null,
      "sPrevious": null
    }
  },
  //oSearch: { "sSearch": "Type here...", "bRegex": false, "bSmart": false },
  "bLengthChange": false,
  "aaData": data,
  "aoColumns": columnSettings,
  "fnRowCallback": function(nRow, aData, iDisplayIndex, iDisplayIndexFull) {

    $(nRow).children().each(function(index, td) {

      if (index == 7) {

        if ($(td).html() === "Schedule0") {
          $(td).css("background-color", "#078DC6");
        } else if ($(td).html() === "Schedule1") {
          $(td).css("background-color", "#FFDE00");
        } else if ($(td).html() === "Schedule2") {
          $(td).css("background-color", "#06B33A");
        } else if ($(td).html() === "Schedule3") {
          $(td).css("background-color", "#FF3229");
        } else {
          $(td).css("background-color", "#FF3229");
        }


      }
    });
    return nRow;
  }
});
4

2 回答 2

1

从 jQuery DataTables 1.10.8 开始,它可以用于pagingType: 'numbers'仅显示页码。

var table = $('#example').DataTable({
    pagingType: 'numbers'
});

有关代码和演示,请参见此示例

于 2015-09-13T22:05:32.373 回答
0

您可以使用分页插件Ellipses。您可能还需要进行一些自定义,但这很简单。

这是一个自定义版本的省略号插件gits的链接。

于 2013-05-08T05:40:41.447 回答