我希望在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();
怎么可能?请帮助我。感谢
答案 0 :(得分:4)
我得到了答案,如何在fullcalendar上呈现特定月份?
jQuery('#calendar').fullCalendar('gotoDate', new Date(2012, 11));
这将在fullcalendar上仅显示 12月月。