1
我正在使用Fullcalendar.js開發預約應用程序。用戶將能夠創建定期約會,在這種約會中,他們將能夠選擇每週重複一天。在經常性事件中刪除特定日期
但現在我面臨着一個問題。假設用戶只需要刪除今天的約會,並保持其他定期約會繼續。
問題
我怎樣才能讓用戶從我的應用程序中的定期約會刪除單個約會?
CODE:
$('#calendar').fullCalendar({
defaultDate: moment(),
header: {
left: 'prev,next today',
center: 'title',
right: 'month,agendaWeek,agendaDay'
},
defaultView: 'month',
events: [{
title:"My repeating event",
start: '10:00', // a start time (10am in this example)
end: '14:00', // an end time (6pm in this example)
dow: [ 1, 2 ] //repeat every monday and tuesday
},{
title:"My repeating123 event",
start: '10:00', // a start time (10am in this example)
end: '14:00', // an end time (6pm in this example)
}],
});
謝謝,但如何使用功能?你能告訴我一些例子嗎? – user998405
你需要改變原來的功能與新的上面提到的答案。必須有一個名爲fullcalendar.js的文件。只需打開它並找到'函數expandEvent(abstractEvent,_rangeStart,_rangeEnd){'並用函數參數和正文替換整個函數與新函數中所述答案。 –
Thanks.i讓你的意思。但我的意思是在我的HTML。我如何去調用這個函數?你能告訴我這個例子嗎? – user998405