13

我的完整日历有 - “月|周|日”视图,我想删除或隐藏“周”和“日”视图,因为我们只使用“月”视图。

你能告诉我怎么做吗?

4

2 回答 2

30

当您开始 fullcalendar 时,不要包括议程日和议程周。就像是

$('#calendar').fullCalendar({
    header: {
        left: 'prev,next',
        center: 'title',
        right: 'month'
    }
});

更新:摆脱月份按钮:

$('#calendar').fullCalendar({
    header: {
        left: 'prev,next',
        center: 'title',
        right: ''
    }
});
于 2013-04-29T13:15:21.803 回答
-2

对: false 正在工作。

 $('#calendar').fullCalendar({
            header: {
                left: 'prev,next ',
                center: 'title',
                right: false,
            },

    });
于 2016-06-10T07:05:33.420 回答