我遇到了 javascript 数组排序和整数的问题。我定义了这些功能:
function sortA(a,b){
return a - b;
}
function sortD(a,b){
return b - a;
}
然后在 jquery $.each 中,我将一些内容放入数组中:
$('.'+sort_column).each(function(index, value) {
var current_num = $.trim($(this).text())
current_num = parseInt(current_num, 10); //convert to integer for numeric sorting.
valuesArr.push(current_num);
console.log(typeof index); //just checking...this shows number in the console
});
var sort_asc = valuesArr.sort(sortA);
var sort_desc = valuesArr.sort(sortD);
console.log(sort_asc);
console.log(sort_desc);
但在控制台中,我以相同的顺序获取数组。
//console
[1214500, 1214499, 1214497, 1214481, 1214432, 1214421, 1214419, 1214418, 1214369, 1214045, 1205691]
[1214500, 1214499, 1214497, 1214481, 1214432, 1214421, 1214419, 1214418, 1214369, 1214045, 1205691]
奇怪的是,如果我在末尾附加一个字符串,排序工作
console.log( valuesArr.sort(sortD) + "asdf");
console.log( valuesArr.sort(sortA) + "asdf");
//console
[1214500,1214499,1214497,1214481,1214432,1214421,1214419,1214418,1214369,1214045,1205691asdf]
[1205691,1214045,1214369,1214418,1214419,1214421,1214432,1214481,1214497,1214499,1214500asdf]
我不知道为什么我什至尝试过,但是你去。这是我第一次使用这种方法,所以我可能错过了一些非常基本的东西。非常感谢您的帮助!