如何在fullcalendar事件点击上应用twitter模态弹出窗口

Kel*_*las 1 javascript fullcalendar

我使用的是fullCalendar jQuery插件,现在,我打算申请Twitter的模态引导上eventClick.如何将此方法应用于我的日历插件?提前致谢!

Luí*_*ruz 7

您可以通过执行以下操作来实现此目的:

eventClick: function(event) {
    var modal = $("#modal");
    modal.find(".modal-title").html(event.title);
    modal.modal();
}
Run Code Online (Sandbox Code Playgroud)

有关完整的代码和功能,请参阅以下jsfiddle