在鼠标悬停时显示谷歌日历中的活动详情

时间:2013-02-21 17:03:00

标签: fullcalendar

我需要在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日历中显示事件详细信息?请帮忙!谢谢!

1 个答案:

答案 0 :(得分:0)

查看答案并回答HERE。答案的最后一个评论有一个显示详细信息的JsFiddle(您必须自己设置样式/配置)。

如果您考虑使用弹出窗口,请查看HERE