// 对日期进行升序排序
arr.sort(function (a, b) {return Date.parse(a) - Date.parse(b);});

 

相关文章: