我正在使用jquery日历来显示一些信息。所以在点击日期中的事件我正在删除弹出窗口我想用它来删除。我怎么能这样做?这是我在这里使用的calerdar代码
$("#calendar").fullCalendar('renderEvent',
{
events:[
{
title: val.title,
start: val.start,
end: val.end,
}
],
标题显示事件名称,点击该事件我正在删除弹出窗口,我将如何使用它来删除该事件?请帮忙
答案 0 :(得分:1)
http://fullcalendar.io/docs/mouse/eventClick/
$('#calendar').fullCalendar({
eventClick: function(calEvent, jsEvent, view) {
// make a call to your server telling it to delete the event.
var promise = $.ajax({
type: 'DELETE',
url: 'yourendpoint/' + calEvent.title
});
promise.then(function () {/* delete event from calendar */})
}
});