jQuery fullcalendar: contextmenu
问题 I want to use jQuery.contextMenu: http://abeautifulsite.net/blog/2008/09/jquery-context-menu-plugin In jQuery.fullcalendar when I right-click on an event how does it work? 回答1: i don't know the contextmenu plugin but i think you can bind it on the eventRender event of fullcalendar. I have the problem with dblClick on an event. This is a part of my solution: eventRender: function(event, element) { element.bind('dblclick', function() { dopbClickFunction(event,element); ....... 回答2: I'm solving