在完整日历中显示三个月

时间:2016-04-19 16:34:18

标签: javascript jquery fullcalendar

有没有办法在Fuill日历中连续显示3个月。我必须使用月视图,我搜索了很多,但我没有找到任何解决方案。 这就是我想要做的。 更多详情:我正在使用Javascript 我试过这个,但它并没有完全按照我想要的那样做。

var calendar = $('#calendar1').fullCalendar({
            header: {
                left: 'prev,next today',
                right: 'title'
            }
        });
        var calendar = $('#calendar2').fullCalendar({
            header: {
                left: 'prev,next today',
                right: 'title'
            }
        });
        var calendar = $('#calendar3').fullCalendar({
            header: {
                left: 'prev,next today',
                right: 'title'
            }
        });

enter image description here

1 个答案:

答案 0 :(得分:3)

我刚刚找到了解决方案

fcViews.month = {
'class': MonthView,
duration: { months: 3 },
defaults: {
    fixedWeekCount: false
}};