0

没有数据时如何隐藏jquery数据表分页按钮并显示自定义消息

4

2 回答 2

0

添加代码进行检查

if(num of records >0)
{
    // show pagination
}
else
{
    // no records message
}
于 2012-07-13T06:25:18.830 回答
0

试试下面的代码。这对我有用。将此代码保留在数据表代码中。

    jQuery('#table_id').DataTable( {
        // Some stuff here
        "fnDrawCallback":function(){
             if(jQuery('table#table_id td').hasClass('dataTables_empty')){
                jQuery('div.dataTables_paginate.paging_full_numbers').hide();
             } else {
                jQuery('div.dataTables_paginate.paging_full_numbers').show();
             }
        }
    });
于 2015-08-25T06:31:25.713 回答