我使用fullcalendar插件,我的事件信息出现在模态窗口中。但现在我需要一个管理员链接来删除一个事件。
$('#InfoTerminModal #eventTitle').html(calEvent.title);
$('#InfoTerminModal #startDate').html(startDate);
$('#InfoTerminModal #endDate').html(endDate);
$('#InfoTerminModal #place').html(calEvent.place);
$('#InfoTerminModal #place_detail').html(calEvent.place_detail);
$('#InfoTerminModal #admin_vorname').html(calEvent.admin_vorname);
$('#InfoTerminModal #admin_nachname').html(calEvent.admin_nachname);
$('#InfoTerminModal #description').html(calEvent.description);
$('#InfoTerminModal').modal('show');
在模态中我有一个简单的链接删除“但我不知道如何将Event.ID发送到我的链接!
对我有什么建议吗?
提前致谢
丹尼斯