数据 Table:如何在 table 结构中显示 0 到 0 个条目旁边的显示条目下拉列表

Data Table: How to show the show Entries dropdown beside the Showing 0 to 0 of 0 entries in the table structure

是否可以在 table 中显示 0 到 0 个条目旁边显示显示条目下拉列表 structure.I 想要在底部显示显示条目下拉列表以及分页和显示0 到 0 个条目,共 0 个条目。

提前致谢!!!

图像看起来像

现在我想按照第二种情况显示显示下拉条目。

是的,可以通过 dataTables“dom”- 属性。 i 是信息,l 是长度菜单,在 i 之前插入 l :

var table = $("#example").DataTable({
   //default is lfrtip 
   dom: 'frtlip'    
});

//lengthmenu -> add a margin to the right and reset clear 
$(".dataTables_length").css('clear', 'none');
$(".dataTables_length").css('margin-right', '20px');

//info -> reset clear and padding
$(".dataTables_info").css('clear', 'none');
$(".dataTables_info").css('padding', '0');

演示 -> https://jsfiddle.net/psvf3z75/