我怎么能修改 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: '/'});
},