我正在使用FullCalendar,我暂缺一个月的视图,而当我单击某个事件时,视图将更改为“议程周”。
eventClick: function(event, jsEvent, view) {
$("#callendar").fullCalendar('gotoDate', event.start.format('h:mm:ss a'));
$("#calendar").fullCalendar('changeView', 'agendaWeek');
$("#calendar").fullCalendar( {
eventSources: [
{
events: function(start, end, timezone, callback) {
$.ajax({
url: 'calendar/get_passation',
dataType: 'json',
data: {
idEvent: event.id
},
success: 'ok'
});
}
}
],
});
但是在议程周视图中,一天中的时间不会出现 看到 enter image description here