如果您使用的是FullCalendar V2,则需要使用removeEvents方法.
您可以通过以下方式调用具有特定ID的事件来删除它:
$("#calendar").fullCalendar('removeEvents', 123); //replace 123 with reference to a real ID
如果你想使用你自己的函数决定是否删除了一个事件,你可以这样调用它:
$("#calendar").fullCalendar('removeEvents', function(eventObject) { //return true if the event 'eventObject' needs to be removed, return false if it doesn't });