如何仅在Fullcalendar中加载具有2个日期的特定月份(12月),即2012年12月15日。

时间:2012-10-31 09:37:52

标签: date fullcalendar

我希望在Fullcalendar中仅加载 12月月,其中2个日期将于2012年12月15日启用。

var date = new Date(2012, 11);
var d = date.getDate();
var m = date.getMonth(11);
var y = date.getFullYear();

怎么可能?请帮助我。感谢

1 个答案:

答案 0 :(得分:4)

我得到了答案,如何在fullcalendar上呈现特定月份?

jQuery('#calendar').fullCalendar('gotoDate', new Date(2012, 11));

这将在fullcalendar上仅显示 12月月。