reload datatable after ajax success

后端 未结 8 881
借酒劲吻你
借酒劲吻你 2020-12-11 05:39

I use JQuery DataTable. I send data to datatable onclick in json file at ajax succes .the first click everything is good,But the next click I get only the right data ANd wro

8条回答
  •  生来不讨喜
    2020-12-11 06:29

    I created this simple function:

    function refreshTable() {
      $('.dataTable').each(function() {
          dt = $(this).dataTable();
          dt.fnDraw();
      })
    }
    

提交回复
热议问题