您好,我正在使用最新版本的 fullcalendar,我想关闭此弹出窗口: https://fullcalendar.io/docs/event-popover 当我调用 eventClick 函数时: https://fullcalendar.io/docs/eventClick
在 eventClick() 处理程序中,您可以简单地删除任何
.fc-more-popover
对象。
例如w。 jQuery:
new FullCalendar.Calendar(div, {
eventClick: function(info) {
$(".fc-more-popover").remove();
var id = info.event.id;
// do something with id
}
});