如何在单击日期时将事件添加到全日历中的日期
How to add event to a date in fullcalender on clicking a date
我正在使用全日历。目前通过拖动将事件添加到日期 option.Now 我需要通过单击特定日期来添加事件。
有什么选择吗?
我在 documentation:
中找到了这段代码
$('#calendar').fullCalendar({
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');
}
});
编辑: dayClick
是我相信您正在寻找的。
我在 youtube Utphala 课程中找到了这段代码:
$(document).on('click','.fc-day',function(){
var date = $(this).attr('data-date');
$.get('index.php?r=events/create',{'date':date},function(data){
$('#modal').modal('show')
.find('#modalContent')
.html(data);
});
});
我正在使用全日历。目前通过拖动将事件添加到日期 option.Now 我需要通过单击特定日期来添加事件。
有什么选择吗?
我在 documentation:
中找到了这段代码$('#calendar').fullCalendar({
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');
}
});
编辑: dayClick
是我相信您正在寻找的。
我在 youtube Utphala 课程中找到了这段代码:
$(document).on('click','.fc-day',function(){
var date = $(this).attr('data-date');
$.get('index.php?r=events/create',{'date':date},function(data){
$('#modal').modal('show')
.find('#modalContent')
.html(data);
});
});