如何在FullCalendar中按开始和结束日期动态更改事件?

时间:2016-12-30 07:49:08

标签: jquery ajax fullcalendar fullcalendar-scheduler

function myFunction(check_in_time,check_out_time) {   
 $('#calendar').fullCalendar({
       events: [
        {
            title: 'Check-In-Out-Date',
            start: check_in_time,
            end: check_out_time,
            allDay: true
        }
       ],
     });
}

当我点击某个按钮时,我每次都使用ajax函数调用 myFunction(check_in_time,check_out_time)。它只是第一次改变。当 myFunction(check_in_time,check_out_time)被调用时,我需要我的日历来每次更改事件。如何改进我的代码?感谢你。

0 个答案:

没有答案