如何修改fullcalendar插件,以便將不同的點擊方法dayClick
等保存在cookie中?下次打開此日曆時,如果默認爲用戶首選項。fullcalendar記住用戶選項例如。月/周/日在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: '/'});
},
在版本2中,我必須將viewDisplay更改爲viewRender才能使用。即。 viewRender:function(view,element){... – PhoebeB