jdom2010 2009-10-22 17:50
浏览 540
已采纳

想把当前的时间向前推三个月,日期格式的,要求有时分秒,用JavaScript实现,怎么实现?谢谢!

想把当前的时间向前推三个月,日期格式的,要求有时分秒,用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]

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?