Fullcalendar将在下个月展示活动,我该如何解决这个问题?

时间:2016-02-05 07:22:00

标签: javascript jquery fullcalendar

这是我在完整日历中的开始日期

start: new Date('2016', '02', '07', 00, 30)

但在加载日历时,此活动将于2016年3月7日展示 我该如何解决这个问题?

1 个答案:

答案 0 :(得分:2)

使用Calender

时,您总是会加起来一个月

在您的情况下:开始:新日期(' 2016',' 01',' 07',00,30)

考虑你从0开始的几个月

var month = new Array();

month[0] = "January";

month[1] = "February";

....

month[11] = "December";

你可以参考这个简单的例如:http://www.w3schools.com/jsref/jsref_getmonth.asp