我正在研究jquery fullcalendar插件。默认情况下,我的代码显示整周视图,但我希望一次显示3天,然后在接下来的onclick按钮显示后显示。我怎么能这样做?
enter code here
$('#日历&#39)。fullCalendar({ defaultView:' agendaWeek',
});
答案 0 :(得分:4)
documentation中的解释非常好。
你想要的可能是这样的:http://jsfiddle.net/z0au4L8x/1/
$('#calendar').fullCalendar({
header: {
center: 'agendaThreeDay' // buttons for switching between views
},
views: {
agendaThreeDay: {
type: 'agenda',
duration: { days: 3 },
buttonText: '3 day'
}
},
defaultView:'agendaThreeDay'
});