我使用jquery tablesorter 2.0.5b。我的一个餐桌包括例如以下数据:
"testtext"
testtext2
这三个例子也以上面显示的顺序显示。但我想得到以下顺序:
"testtext"
testtext2
我该怎么做?我必须覆盖一个功能吗?谢谢!
答案 0 :(得分:2)
查看我的fork of tablesorter。
一个新功能是设置对空单元格进行排序的选项。您可以强制它将它们排序到顶部,底部或将它们的值视为零。这是a demo。
$(function() {
// call the tablesorter plugin
$("table").tablesorter({
theme : 'blue',
// default of emptyTo is "bottom"
emptyTo: 'top'
});
});