仅显示jQuery FullCalendar中的当前周

时间:2013-03-07 23:32:52

标签: fullcalendar

我使用jQuery FullCalendar,我只想在月份显示上显示实际的一周

这是我想要的形象:http://hpics.li/c6680b1

1 个答案:

答案 0 :(得分:2)

设置日历时,只需使用defaultView: 'basicWeek'

即可
$('#calendar').fullCalendar({
    header: {
        left: '',
        center: 'title',
        right: ''
    },
    defaultView: 'basicWeek',
   ...your other settings.  
 });

来源:Basic WeekAvailable Views