日期:2014-05-16  浏览次数:20455 次

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