我正在尝试制作节目。其中我有一个值为2013-08-27的文本框我希望按月将这个日期增加到30个月
ex:-
2013-08-27
2013-09-27
2013-10-27
2013-11-27
2013-12-27
2014-01-27
2014-02-27
.........
2015-01-27
我已经使用Google搜索了这个主题...但我没有得到任何线索如何做到这一点..至于我得到这个代码
var myDate = new Date();
//add a day to the date
myDate.setDate(myDate.getDate() + 1);
但是这让我得到了解决方案11,17我希望按照给定日期从一个月开始增加一年到30个月请给我任何线索...对不起英语不好
答案 0 :(得分:3)
试试这个:
var myDate = new Date();
for(var i =0;i<30; i++)
{
myDate.setMonth(myDate.getMonth() + 1);
console.log(myDate);
}