js數組元素根據指定的字段排序

var arr=[ {far:123.45,address:"金糧路"}, {far:3685.45,address:"北京路"}, {far:2.8,address:"人民公園"}, ]; //根據距離遠近排序,越近在前面,升序 arr.sort(function (a, b) { if (a.far < b.far) { return -1; } else if (a.far ==
相關文章
相關標籤/搜索