我目前正在使用http://arshaw.com/fullcalendar/(完整的日历插件)和 qtip2 插件。我想使用 qtip2 弹出框创建事件。我不知道该怎么做?有人可以指导我吗?
问问题
79 次
1 回答
0
将选项绑定select
到新函数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.
}
于 2013-08-26T16:46:54.033 回答