大家!我正在尝试向FullCalendar中的事件展示工具提示。但是它无法正常工作并在控制台中显示此消息
untured syntaxerror:意外令牌(
)
有什么问题?这是我的JS功能代码:
$('#calendar').fullCalendar(function() {
eventAfterRender: function(event, element) {
$(element).tooltip({
title: event.title,
container: "body"
});
}
});
在Fullcalendar 4中,使用EvendRender函数:
eventRender: function (info) {
$(info.el).tooltip({ title: info.event.title });
}
您正在传递功能。您应该通过选择和回调。阅读文档
$('#calendar').fullCalendar({ //Removed function() from here
eventAfterRender: function(event, element) {
$(element).tooltip({
title: event.title,
container: "body"
});
}
});