我使用 jquery tablesorter 2.0.5b。我的一个表格单元包含以下数据:
"testtext"
testtext2
这三个示例也按上述顺序显示。但我想得到以下序列:
"testtext"
testtext2
我该怎么做?我必须重写一个函数吗?谢谢!
我使用 jquery tablesorter 2.0.5b。我的一个表格单元包含以下数据:
"testtext"
testtext2
这三个示例也按上述顺序显示。但我想得到以下序列:
"testtext"
testtext2
我该怎么做?我必须重写一个函数吗?谢谢!
看看我的 tablesorter 叉子。
一项新功能是设置对空单元格进行排序的位置的选项。您可以强制它将它们排序到顶部、底部或将它们的值视为零。这是一个演示。
$(function() {
// call the tablesorter plugin
$("table").tablesorter({
theme : 'blue',
// default of emptyTo is "bottom"
emptyTo: 'top'
});
});