0

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

这是我想要的图像:http: //hpics.li/c6680b1

4

1 回答 1

2

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

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

来源:基本周可用视图

于 2013-03-07T23:57:52.130 回答