1. 程式人生 > >js 指定日期加一天

js 指定日期加一天

function dateAdd(startDate) {
        startDate = new Date(startDate);
        startDate = +startDate + 1000*60*60*24;
        startDate = new Date(startDate);
        var nextStartDate = startDate.getFullYear()+"-"+(startDate.getMonth()+1)+"-"+startDate.getDate();
        return nextStartDate;

    }

這裡的startDate是我從別的地方傳過來的,可以自定義時間, startDate = +startDate + 1000*60*60*24;當時間為月末,這裡會自動加一個月。