fullcalendar中只有月份视图(删除/隐藏"日"和"周"视图)

dsi*_*dsi 9 fullcalendar

我的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)