在全日历 2.0.3 的月周日按钮上添加事件
add event on month week and day button of full calender 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');
});
我正在使用 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');
});