这是我的工作 在周视图中选择2014年12月30日的上午12点时段,然后选择2015年1月1日作为结束时间。事件已成功创建并显示在周视图中。现在当我切换到月视图时,事件仅在12月30日显示。切换回周视图可以正确保留事件,即使页面刷新,周视图也能正常工作,但月视图永远不会有效。
我使用的是Fullcalendar 1.6.1版本。 http://fullcalendar.io/
代码部分
var day = new Date();
$("#calendar").fullCalendar({
editable: true,
events: events_list,
//Adjusts ratio of calendar and makes it taller. Default is 1.35
aspectRatio: 1.265,
header: {
right: "agendaDay,agendaWeek,month",
center: "title",
left: "prev,next today"
},
defaultView: 'agendaWeek',
allDaySlot: true,
axisFormat: 'h(:mm)tt',
slotMinutes: 15
})
fullcalendar.js https://gist.github.com/1533e07d93f308a6b6b0.git