添加完整日历2.0.3的月周日事件按钮



我使用的是jquery的完整日历v2.0.3。我想在月、周和日按钮上添加一些功能。为此,我使用了on()方法,如-

$(".fc-agendaWeek-button").on( "click", function() {
  alert( "Goodbye!" ); 
});

但这是行不通的。我不知道为什么。请分享你的想法。提前谢谢。

它不起作用,因为当时还没有加载fullCalendar。改为使用事件委派:

$('#calendar').fullCalendar({
    header: {
        left: 'prev,next today',
        center: 'title',
        right: 'month,agendaWeek,agendaDay'
    }
}).on('click', '.fc-agendaWeek-button', function() {
    alert('Week button clicked');
});

另请参阅此小提琴

相关内容

  • 没有找到相关文章

最新更新