想把当前的时间向前推三个月,日期格式的,要求有时分秒,用JavaScript实现,怎么实现?谢谢!
2条回答 默认 最新
成尚謙 2009-10-22 18:30关注[code="java"]
function get3MonthBefor(){
var resultDate,year,month,date,hms;
var currDate = new Date();
year = currDate.getFullYear();
month = currDate.getMonth()+1;
date = currDate.getDate();
hms = currDate.getHours() + ':' + currDate.getMinutes() + ':' + (currDate.getSeconds() < 10 ? '0'+currDate.getSeconds() : currDate.getSeconds());
switch(month)
{
case 1:
case 2:
case 3:
month += 9;
year--;
break;
default:
month -= 3;
break;
}
month = (month < 10) ? ('0' + month) : month;resultDate = year + '-'+month+'-'+date+' ' + hms; return resultDate;}
[/code]本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报