码迷,mamicode.com
首页 > 编程语言 > 详细

Javascript 日期 加减

时间:2015-01-23 16:13:08      阅读:129      评论:0      收藏:0      [点我收藏+]

标签:

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

Javascript 日期 加减

标签:

原文地址:http://www.cnblogs.com/cb168/p/4244200.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!