我正在以这种方式在fullcalendar上使用eventDrop:
eventDrop: function( event, delta, revertFunc, jsEvent, ui, view ) {
if (!confirm("are you sure?") {
revertFunc();
}
启动revertFunc后,我在控制台中出现此错误:
Uncaught TypeError: number is not a function
你能帮帮我吗?