这是jsFiddle。
从小提琴中可以看到,total
列包含当前按文本排序的数字。
问:如何按数值对total
列进行排序?
var table = $('table');
$('#facility_header, #city_header, #total')
.wrapInner('<span title="sort this column"/>')
.each(function(){
var th = $(this),
thIndex = th.index(),
inverse = false;
th.click(function(){
table.find('td').filter(function(){
return $(this).index() === thIndex;
}).sortElements(function(a, b){
return $.text([a]) > $.text([b]) ?
inverse ? -1 : 1
: inverse ? 1 : -1;
}, function(){
// parentNode is the element we want to move
return this.parentNode;
});
inverse = !inverse;
});
});
最佳答案
在比较它们之前,您必须先解析这些值。
.sortElements(function(a, b){
var sa = $.text([a]);
var sb = $.text([b]);
var ia = parseInt(sa);
var ib = parseInt(sb);
if (!isNaN(ia) && !isNaN(ib)) {
return ia > ib ? (inverse ? -1 : 1) : (inverse ? 1 : -1);
}
return sa > sb ? (inverse ? -1 : 1) : (inverse ? 1 : -1);
}
这是您更新的jsfiddle。