JS 日期加减
下面是月份加六个月例子:
var date = new Date();//获取当前日期
console.log(date.toLocaleDateString());//转换并打印 yyyy/mm/dd 日期显示格式
date.setMonth(date.getMonth()+6);//当前月份加六个月
console.log(date.toLocaleDateString());
运行效果:
2017/7/26
2018/1/26
undefined
var date = new Date();//获取当前日期
console.log(date.toLocaleDateString());//转换并打印 yyyy/mm/dd 日期显示格式
date.setMonth(date.getMonth()+6);//当前月份加六个月
console.log(date.toLocaleDateString());
2017/7/26
2018/1/26
undefined