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)被调用时,我需要我的日历来每次更改事件。如何改进我的代码?感谢你。