fullcalendar中的工具提示不起作用

时间:2015-05-08 08:24:08

标签: javascript jquery twitter-bootstrap

大家好! 我试图在fullcalendar中显示事件的工具提示。但它没有工作,并在控制台中显示此消息

  

Uncaught SyntaxError:意外的令牌(

有什么问题?这是我的js-function代码:

App

2 个答案:

答案 0 :(得分:3)

你正在传递功能。你应该通过你的选择和回调。阅读Docs

$('#calendar').fullCalendar({   //Removed function() from here
    eventAfterRender: function(event, element) {
        $(element).tooltip({
            title: event.title,
            container: "body"
        });
    }
});

答案 1 :(得分:-1)

在FullCalendar 4中,使用eventRender函数:

eventRender: function (info) {
  $(info.el).tooltip({ title: info.event.title });     
}