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