如何修改fullcalendar插件,以便将不同的点击方法dayClick
等保存在 cookie 中?下次打开此日历时将默认为用户首选项。
已经在使用 cookie 插件:https ://raw.github.com/carhartl/jquery-cookie/master/jquery.cookie.js
在回答之后更新工作 cookie 代码:
var calendarView = (!$.cookie('calendarDefaultView')) ? 'month' : $.cookie('calendarDefaultView');
$calendar.fullCalendar({
defaultView: calendarView,
viewDisplay: function(view){
$.cookie('calendarDefaultView', view.name, {expires:7, path: '/'});
},