//按时间再分 function TimeList(res){ var arr=[], arr1=[]; var isTrue = true; for(var i=0;i<=res.list.length;i++){ if(isTrue){ arr1.push(res.list[i]); }else{ arr.push(arr1); arr1 = []; arr1.push(res.list[i]); } if(i+1<res.list.length){ if(bainx.formatDate('Y-m-d', new Date(res.list[i].lastUpdated))==bainx.formatDate('Y-m-d', new Date(res.list[i+1].lastUpdated))){ isTrue = true; }else{ isTrue = false; } }else{ isTrue = false; } } return arr; }