Using http://fullcalendar.io/
是否可以在整月视图中显示 7 周或更长时间?
有人有例子吗?
您可以创建自定义视图。完整日历 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'
}
}
});