答案 0 :(得分:1)
您可以制作自定义视图。 Fullcalendar v2.4.0演示https://jsfiddle.net/ktLxrw0v/
$('#calendar').fullCalendar({
header: {
left: 'prev,next,today',
center: 'title',
right: 'basicWeek, month, nineWeek'
},
views: {
nineWeek: {
type: 'basicWeek',
duration: {
weeks: 9
},
buttonText: 'Nine Week'
}
}
});