你好,我有一个问题,动态添加行到
jquery tablesorter,
我必须在表的开头添加一行,默认情况下,表列表工作正常,但在添加行之后,仅排序的表仅使用先前的行排序,我的意思是新行不包括在排序过程中,新行有一些但不是全部字段空白任何解决方案?
解决方法
表格网站提供如何做到这一点的详细信息:
Appending table data with Ajax.代码如下:
$(document).ready(function() { $("table").tablesorter(); $("#ajax-append").click(function() { $.get("assets/ajax-content.html",function(html) { // append the "ajax'd" data to the table body $("table tbody").append(html); // let the plugin know that we made a update // updateAll ensures sorting is updated as well $("table").trigger("updateAll"); // set sorting column and direction,this will sort on the first and third column var sorting = [[2,1],[0,0]]; // sort on the first column $("table").trigger("sorton",[sorting]); }); return false; }); });