1、指定的时间加一天 ,可设置N天
new Date(new Date('2019-12-31').setDate(new Date('2019-12-31').getDate()+1))
2、指定的时间加一个月,可以设置N月
new Date(new Date('2019-10-14').setMonth(new Date('2019-10-14').getMonth()+1))
注:
月份缩写为:
一月Jan,
二月Feb,
三月Mar,
四月Apr,
五月May,
六月Jun,
七月Jul,
八月Aug,
九月Sept,
十月Oct,
十一月Nov,
十二月Dec