jquery - 使用tablesorter无效的默认列排序

时间:2014-02-18 22:25:38

标签: jquery tablesorter

我有一张工作正常的可排序表。我想要做的就是在页面加载时默认对默认列进行排序。我去了http://tablesorter.com/docs/上的插件文档,使用完全相同的代码,显示了我正在尝试做的一个例子,但由于某种原因,它无法正常工作。我正在使用的是:

$(".tablesorter").tablesorter( {sortList: [[0,1], [1,1]]} );

我也读过这个:Using Jquery Tablesorter, how to make one of the columns the default one that sorts when the page loads?

这基本上是一回事。

我也没有收到任何控制台错误。有没有其他人遇到过这个问题,或者知道为什么它不起作用?

编辑: 这是我目前基本上有的排序,但不默认为给定的sortList值http://jsfiddle.net/86Ta2/

1 个答案:

答案 0 :(得分:0)

您可能在代码中做错了,与我们分享代码以查看它,创建http://jsfiddle.net

这是一个基于文档的工作示例

$(document).ready(function() { 
    // call the tablesorter plugin 
    $("table").tablesorter({ 
        // sort on the first column and third column, order asc 
        sortList: [[0,1],[1,1]] 
    }); 
}); 

http://jsfiddle.net/d55Td/