我一直在努力让Full Calendar的dayClick事件发挥作用。它不会起作用,我尝试了很多不同的东西。我不知道问题是什么,我可以像eventClick这样的东西完全正常工作。
这是我的代码:
$(document).ready(function () {
$('#calendar').fullCalendar({
selectable:{
month:false,
agenda: false
},
dayClick: function (date, jsEvent, view) {
alert('Clicked on: ' + date.format());
alert('Coordinates: ' + jsEvent.pageX + ',' + jsEvent.pageY);
alert('Current view: ' + view.name);
// change the day's background color just for fun
$(this).css('background-color', 'red');
}
});
});
我做错了什么?