是否可以在全日历中为议程周视图设置开始和结束时间?我想将实际选择的周保存在 cookie 中,并在用户下次打开日历时打开本周。
> http://arshaw.com/fullcalendar/docs/
我是怎么做到的?
首先 - 一切都可以在这个惊人的网站中找到..插件实际手册。
http://arshaw.com/fullcalendar/docs/
然后你可以使用它
.fullCalendar( 'changeView', viewName )
可用视图
自版本 1.3 起可用的月份
基本日 - 从版本 1.3 开始
议程自 1.4 版起提供一周
议程日 - 从版本 1.4 开始
除此之外 - 您可以在日历初始化后从 cookie 或其他变量调用 gotoDate
转到日期
将日历移动到任意年/月/日。
.fullCalendar( 'gotoDate', year [, month, [ date ]] ) IMPORTANT: month is 0-based, meaning January=0, February=1, etc.
这应该被称为匿名函数 -
在 $("#youCalendarID").fullCalendar( 'gotoDate', getCookie.year, getCookie.Month)
丫头!别忘了看看这个网站http://arshaw.com/fullcalendar/docs/