关于点击事件的完整日历事件限制文字

时间:2019-02-13 04:02:44

标签: javascript jquery fullcalendar

我正在使用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());

}  })

1 个答案:

答案 0 :(得分:2)

我已经通过阅读this documentation

解决了这个问题

这是代码

tpool().map(...)