Js获取3个月后的时间 在javascript获取系统时间,并给当前时间月份加3,怎么获取3个月后的时间var d = new Date();d.setMonth(d.getMonth()+3);alert(d);