如何使用Array.ort()对数字进行正确排序?
在多个浏览器中,以下代码无法正确排序数字:
a = new Array();
a.push(10);
a.push(60);
a.push(20);
a.push(30);
a.push(100);
document.write(a.sort())
它返回10,100,20,30,60
。
有人知道为什么吗?
解决方案
我尝试过不同的数字,它总是表现得好像不存在0一样,否则会正确地对数字进行排序。有人知道为什么吗?
您得到的是字典序排序(例如,将对象转换为字符串,然后按字典顺序排序),这是Javascript中的默认排序行为:
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/sort
array.sort([compareFunction])
参数
compareFunction
指定定义排序顺序的函数。如果省略,则根据每个元素的字符串转换按字典顺序(按字典顺序)对数组进行排序。
在ECMAScript规范(通用Javascript的标准参考)中,ECMA-262, 3rd ed.,15.4.4.11节,默认排序顺序是字典序的,尽管它们没有说出来,而是给出了概念性排序函数的步骤,该函数在必要时调用给定的比较函数,否则在转换为字符串时比较参数:
13. If the argument comparefn is undefined, go to step 16.
14. Call comparefn with arguments x and y.
15. Return Result(14).
16. Call ToString(x).
17. Call ToString(y).
18. If Result(16) < Result(17), return −1.
19. If Result(16) > Result(17), return 1.
20. Return +0.
相关文章