我遇到fullcalendar的问题,当我修改轴时,它会消失。这是我的代码:
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'agendaWeek,agendaDay'
},
defaultView: 'agendaWeek',
allDaySlot: false,
minTime: "09:15:00",
maxTime: "18:15:00",
slotDuration: "00:60:01",
});
});
显示哪个 this calendar
但是我在JSFiddle上使用了完全相同的代码,它确实显示了轴!!
我出错的任何想法?
感谢。
答案 0 :(得分:1)