jQuery完整日历默认视图设置

Raj*_*ngh 15 jquery

我正在使用jQuery完整日历.

但我没有得到如何将周视图设置为完整日历中的默认视图.

Sud*_*oti 40

尝试:


$('#calendar').fullCalendar({
    defaultView: 'basicWeek'
    aspectRatio: 1.5
});

参考:FullCalendar可用视图

编辑:


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