jquery tablesorter与动态添加行的问题

前端之家收集整理的这篇文章主要介绍了jquery tablesorter与动态添加行的问题前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
你好,我有一个问题,动态添加行到 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;
    });
});
原文链接:https://www.f2er.com/jquery/178837.html

猜你在找的jQuery相关文章