我正在嘗試使用arShow Jquery Fullcalendar和ajax Web腳本來完成一些過濾器。 我創建fullcalendar這種方式(simplyfied):Jquery Fullcalendar當我更改事件源時,所有屬性都丟失
$('#calendar').fullCalendar({
firstDay: 1,
selectable: true,
events: 'somewebscript.php'
});
但是,當我想改變jQuery的事件處理程序的「firstDay」和事件源「選擇」參數都將丟失。我用這個:
$('#calendar').fullCalendar({
events: 'somewebscript.php?showholidays=true'
});
爲什麼?我只想重新繪製具有相同屬性的事件數組。
我有同樣的問題,嘗試看看這裏: http://stackoverflow.com/questions/10940182/change-fullcalendar-event-source-after-load – sebbalex