这就是我在 chrome 控制台中输入的代码:
var o = { "B": "2", "A": "1", "C": "3" };
var e = $(o).sort();
这就是结果(console.log)
Object {B: "2", A: "1", C: "3"} //Output for: console.log(o);
// output for console.log(e);
[Object, jquery: "1.10.1", constructor: function, init: function, selector: "", toArray: function…]
0: Object
A: "1"
B: "2"
C: "3"
...
Object {B: "2", A: "1", C: "3"} //output console.log(e[0]);
有人可以告诉我如何获得排序的对象,为什么 e 中的对象是排序的而 e[0] 不是?
谢谢 :)