标签:
//根据对象的某个属性对数组进行排序 function compar(attribute){ return function (obj1,obj2){ if(obj1.attribute > obj2.attribute){ return -1; }else{ return 1; } } };
根据对象的某一属性对数组进行排序
原文地址:http://www.cnblogs.com/lcx90/p/5714650.html