-1
在jQuery日曆中,我們有一天點擊和事件點擊。即使單擊「事件」,我也只想呈現「點擊日」。我評論了事件在我的代碼中單擊以呈現「點擊日」。即使點擊當天的事件,它也沒有發射任何東西。所以,我怎樣才能實現呢?任何建議表示讚賞如何在Jquery完整日曆中單擊「事件點擊」時呈現「點擊日」事件?
下面是示例代碼
$('#calendar').fullCalendar({
allDaySlot: false,
header: {
left: 'today prev next',
center: 'title',
right: 'agendaWeek,agendaDay'
},
//I commented this event click as I don't want
eventClick: function(calEvent, jsEvent, view) {
},
dayClick: function(date, jsEvent, calEvent) {
//my customized code
}
謝謝我有同樣的想法,但我想如果有任何其他的方法。工作沒問題沒問題 – Cherry