list.sort(function (x, y) {
   return x.param > y.param? 1 : -1
})
list为目标数组
param是参数

相关文章: