js中对日期进行加减

 

var today=new Date(); // 获取今天时间
today.setDate(today.getDate() + 7); // 系统会自动转换
下面是date类提供的三个你可能生成字符串用到的函数:
getDate() 从 Date 对象返回一个月中的某一天 (1 ~ 31)。
getMonth() 从 Date 对象返回月份 (0 ~ 11)。
getFullYear() 从 Date 对象以四位数字返回年份。

你可能感兴趣的:(js)