//獲取上個月的時間
getlastmonth()
if (month < 10)
var mydate = new date(year, month, 0);
var startdate = year + '-' + month + '-01'; //
上個月第一天
var enddate = year + '-' + month + '-' + mydate.getdate() ; //
上個月最後一天
this
.setdata()
},
//獲取近三個月 往前推90天
getlastthreemonth();
dateobj.now = year + '-' + month + '-' +day;
//當前月的總天數
var nowmonthday = new date(year, month, 0).getdate();
//如果是1、2、3月,年數往前推一年
if(month - 3 <= 0)
else
}else
else
}else
}this
.setdata()
},
//獲取近半年
getlasthalfyear();
dateobj.now = year + '-' + month + '-' +day;
//當前月的總天數
var nowmonthday = new date(year, month, 0).getdate();
//如果是1、2、3,4,5,6月,年數往前推一年
if(month - 6 <= 0)
else
}else
else
}else
}this
.setdata()
}
規劃 近乙個月的規劃
雖說計畫不如變化快,但是制定乙個短期的計畫,能知道自己最近專心該做什麼 1.整理好mfc的常用類,常用api函式。整理在visualc 的第四本筆記本上。2.細心看完一本directx教程,ultimate.game.programming.with.directx allen.sherrod,70...
Mysql 查詢近12個月
select date format curdate y m as mon union select date format curdate interval 1 month y m as mon union select date format curdate interval 2 month y...
sql查詢近七天,近兩周,近乙個月的資料
注意 date 此處是你需要查詢的表中關於時間的欄位名 interval後的數字可以改變,想查詢幾天資料就可以查詢近幾天資料。其他部分固定。近一周 select from student where date sub curdate interval 7 day date date time 近兩周...