我使用jQuery FullCalendar,我只想在月份显示上显示实际的一周
这是我想要的形象:http://hpics.li/c6680b1
答案 0 :(得分:2)
设置日历时,只需使用defaultView: 'basicWeek'
$('#calendar').fullCalendar({
header: {
left: '',
center: 'title',
right: ''
},
defaultView: 'basicWeek',
...your other settings.
});