我正在使用https://fullcalendar.io/日历,我已经使用了eventLimitText:“更多”,我希望点击eventLimitText时获得日期
$('#calendar').fullCalendar({
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
eventLimit: true,
timeFormat: 'H:mm',
dayClick: function(date, jsEvent, view) {
alert('Clicked on: ' + date.format());
} })