jQuery DataTables无法与水平滚动一起使用

时间:2018-09-05 06:22:58

标签: jquery datatables

代码示例

$(document).ready(function () {
   $('#dataTables-example').DataTable({
      "sScrollY": "200px",
      "sScrollX": "100%",
      "bScrollCollapse": true
   });
});

它显示像打击图像 https://i.stack.imgur.com/UwTNM.png

1 个答案:

答案 0 :(得分:0)

scroll属性以像素为单位,true或false为:

$(document).ready(function () {
   $('#dataTables-example').DataTable({
      "sScrollY": true,
      "sScrollX": true,
      "bScrollCollapse": true
   });
});

有关更多信息,请阅读文档datatables.net/reference/option/scrollX。