Fullcalendar 我想使用qtip2在完整日历插件上创建事件

Fullcalendar 我想使用qtip2在完整日历插件上创建事件,fullcalendar,qtip2,Fullcalendar,Qtip2,我目前正在使用(完整日历插件)和qtip2插件。我想使用qtip2 popover创建事件。我不知道该怎么做?有人能给我介绍一下吗?将选项选择绑定到一个新函数youFunction(回调)。在这个新函数中,您应该接收所选的日期参数,然后您可以根据需要操纵和保存事件 $('#calendar').fullCalendar({ // put your options and callbacks here //... select: yourFunction, //...

我目前正在使用(完整日历插件)和qtip2插件。我想使用qtip2 popover创建事件。我不知道该怎么做?有人能给我介绍一下吗?

将选项
选择
绑定到一个新函数
youFunction
(回调)。在这个新函数中,您应该接收所选的日期参数,然后您可以根据需要操纵和保存事件

 $('#calendar').fullCalendar({
   // put your options and callbacks here
   //...
   select: yourFunction,
   //...
 });

 function yourFunction(startDate, endDate, allDay) {
   //open your popover, manipulate the data and save the event.
 }