我需要在fullcalendar中显示鼠标悬停的事件详细信息,而不是单击它。 到目前为止,这是我的代码:
$(document).ready(function(){ //页面现已准备就绪,初始化日历... $( '#日历')。fullCalendar({ eventSources:[ 'https://www.google.com/calendar/feeds/8msdika8k0vtf797v81rq4ot4%40group.calendar.google.com/public/basic' ] eventClick:[function(event){ if(event.url){ 返回false; } } ] eventMouseover:function(event,jsEvent,view) { }, }) });我在eventmouseover函数中添加了什么,以便从我的Google日历中显示事件详细信息?请帮忙!谢谢!