当前位置:Gxlcms > JavaScript > javascript 当前日期加(天、周、月、年)

javascript 当前日期加(天、周、月、年)

时间:2021-07-01 10:21:17 帮助过:11人阅读

代码如下:
//create the date
var myDate = new Date();

//add a day to the date
myDate.setDate(myDate.getDate() + 1);

//add a week
myDate.setDate(myDate.getDate() + 7);

//add a month
myDate.setMonth(myDate.getMonth() + 1);

//add a year
myDate.setYear(myDate.getYear() + 1);

人气教程排行