backgroundColor: '#ED1317'
php - change the background color of the events in FullCalendar - Stack Overflow
2. 使用 CSS 修改
$(this).css('border-color', 'red');eventClick - Documentation | FullCalendar
backgroundColor: '#ED1317'
$(this).css('border-color', 'red');eventClick - Documentation | FullCalendar
function rerender_calendar(id, url)
{
// clear all event
$('#' + id).fullCalendar('removeEvents');
// render new event
$('#' + id).fullCalendar('addEventSource', url);
}