显示 [] 条目数据表更改位置

Otm*_*ane 5 jquery datatables

我在表格顶部使用带有 Show[] 条目的 jQuery 数据表。但是,我想将它移到底部。

下面是我的 jQuery 代码:

$(document).ready(function() {
  $('#ple').dataTable({
    "dom": '<"pull-left"f><"pull-bottom"l>tip'
  });
});
Run Code Online (Sandbox Code Playgroud)

Cha*_*kar -1

 $(document).ready(function() {
  $('#ple').dataTable({
    bLengthChange: true,
    "sDom": 'Rlfrtlip',
  });
   //If it shows multiple show[] entries then use following line to hide top one
   //$("#machineStatusTabel_length:first").hide() 
});
Run Code Online (Sandbox Code Playgroud)