DataTables(服务器端脚本)分页对齐结束

时间:2018-02-07 07:48:55

标签: php jquery datatables

我正在为我的表使用Jquery数据表插件(使用服务器端脚本。但是数据表的分页对齐在第6页之后,请帮我解决这个问题。

第6页之前的分页:

enter image description here

第6页后的分页:

enter image description here

$('#contacts').DataTable(
            {
            "order": [[ 0, "desc" ]],
            "pageLength": 1,
            "lengthChange": false,
            "processing": true,
            "serverSide":true,
            "ajax":{
                 url:"abc.php",
                    type:"post"
            },
            "columnDefs": [
                            {"className": "dt-center", "targets": "_all"}
                          ]
        } );

        $('input[type=search]').addClass('form-control round');
        $("#contacts_filter").css('margin-right', '15px');
        $("#contacts_filter").css('text-align', 'center');
        $("#contacts_info").css('padding-left', '15px');
        $("#contacts_info").css('font-size', '20px');
        $("#contacts_paginate").css('padding-bottom', '10px');
        $("#contacts_paginate").css('padding-top', '10px');

0 个答案:

没有答案