全日历中的工具提示不起作用
Tooltip in fullcalendar not working
大家好!
我正在尝试在完整日历中显示有关事件的工具提示。但它不起作用并在控制台中显示此消息
Uncaught SyntaxError: Unexpected token (
有什么问题?这是我的 js 函数代码:
$('#calendar').fullCalendar(function() {
eventAfterRender: function(event, element) {
$(element).tooltip({
title: event.title,
container: "body"
});
}
});
你正在传递函数。您应该传递您的选项和回调。阅读 Docs
$('#calendar').fullCalendar({ //Removed function() from here
eventAfterRender: function(event, element) {
$(element).tooltip({
title: event.title,
container: "body"
});
}
});
在 FullCalendar 4 中,使用 eventRender 函数:
eventRender: function (info) {
$(info.el).tooltip({ title: info.event.title });
}
大家好! 我正在尝试在完整日历中显示有关事件的工具提示。但它不起作用并在控制台中显示此消息
Uncaught SyntaxError: Unexpected token (
有什么问题?这是我的 js 函数代码:
$('#calendar').fullCalendar(function() {
eventAfterRender: function(event, element) {
$(element).tooltip({
title: event.title,
container: "body"
});
}
});
你正在传递函数。您应该传递您的选项和回调。阅读 Docs
$('#calendar').fullCalendar({ //Removed function() from here
eventAfterRender: function(event, element) {
$(element).tooltip({
title: event.title,
container: "body"
});
}
});
在 FullCalendar 4 中,使用 eventRender 函数:
eventRender: function (info) {
$(info.el).tooltip({ title: info.event.title });
}