当前位置:  开发笔记 > 编程语言 > 正文

Fullcalendar:如何删除事件

如何解决《Fullcalendar:如何删除事件》经验,为你挑选了1个好方法。



1> leroydev..:

如果您使用的是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
});

推荐阅读
ar_wen2402851455
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有