📌  相关文章
📜  jquery datatable draw false - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:01:30.887000             🧑  作者: Mango

代码示例1
redraw the table maintaining current paging position

Example :
var table = $('#example').DataTable();
 
// Sort by column 1 and then re-draw
table
    .order( [[ 1, 'asc' ]] )
    .draw( false );