下面是月份加六个月例子:
var date = new Date();//获取当前日期
console.log(date.toLocaleDateString());//转换并打印 yyyy/mm/dd 日期显示格式
date.setMonth(date.getMonth()+6);//当前月份加六个月
console.log(date.toLocaleDateString());
var date = new Date();//获取当前日期
console.log(date.toLocaleDateString());//转换并打印 yyyy/mm/dd 日期显示格式
date.setMonth(date.getMonth()+6);//当前月份加六个月
console.log(date.toLocaleDateString());