标签:js 实现前段排序
var rowsData=info.rows; // rowsData 为数组
rowsData.sort(function(a, b) {
if(a.num === b.num) {
return new Date(b.createTime) - new Date(a.createTime)
} else {
return b.num - a.num;
}
});
标签:js 实现前段排序
原文地址:http://12943278.blog.51cto.com/12933278/1928338