欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

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

程序员文章站 2022-07-04 09:39:23
复制代码 代码如下://create the date var mydate = new date(); //add a day to the date mydate.se...
复制代码 代码如下:

//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);