我的完整日历有 - “月|周|日”视图,我想删除或隐藏“周”和“日”视图,因为我们只使用“月”视图。
你能告诉我怎么做吗?
当您开始 fullcalendar 时,不要包括议程日和议程周。就像是
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month'
}
});
更新:摆脱月份按钮:
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: ''
}
});
对: false 正在工作。
$('#calendar').fullCalendar({
header: {
left: 'prev,next ',
center: 'title',
right: false,
},
});