我在对十进制值表排序器网格进行排序时遇到问题。当我尝试对表中的距离值进行排序时,距离排序如下:
distance
0.35
0.76
1.36
1.75
10.36
100.66
2.33
$(document).ready(function() {
// extend the default setting to always include the zebra widget.
$.tablesorter.defaults.widgets = ['zebra'];
// extend the default setting to always sort on the first column
$.tablesorter.defaults.sortList = [[0,0]];
$.tablesorter.defaults.debug=true;
$("table#list").tablesorter();
});
$(document).ready(function() {
$("table#list").tablesorterPager({container: $("#pager")});
});
谁能告诉我防止错误排序的解决方案是什么?