使用下面的函數可一獲取某月的最後一天的日期:
//獲得某月的最後一天
function getLastDay(year,month) {
var new_year = year; //取當前的年份
var new_month = month++;//取下一個月的第一天,方便計算(最後一天不固定)
if(month>12) {
new_month -=12; //月份減
new_year++; //年份增
}
var new_date = new Date(new_year,new_month,1); //取當年當月中的第一天
return (new Date(new_date.getTime()-1000*60*60*24)).getDate();//獲取當月最後一天日期
}
獲取2013年6月的最後一天的代碼:
2013年6月的最後一天是:<span id="last_keleyi_com"></span>
$("#last_keleyi_com").text(getLastDay(2013,6))
獲取本月最後一天的代碼:
本月最後一天是:<span id="thislast_keleyi_com"></span>
var myDate = new Date();
$("#thislast_keleyi_com").text(getLastDay((myDate.getFullYear()),(myDate.getMonth()+1)))
這裡都使用到了jQuery框架
運行結果:
2013年6月的最後一天是:
本月最後一天是: