我的fullcalendar有 - "月|周|日"视图,我想删除或隐藏"周"和"日"视图,因为我们一直只使用"月"视图.
你能告诉我怎么做吗?
tub*_*035 25
当您启动fullcalendar时,请不要包含agendayDay和agendaWeek.就像是
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month'
}
});
Run Code Online (Sandbox Code Playgroud)
更新:摆脱月份按钮:
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: ''
}
});
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
16136 次 |
| 最近记录: |