我正在使用Fullcalendar.io来制作一些调度程序。 我知道我可以通过displayEventTime属性将事件时间隐藏为false。
$('#calendar').fullCalendar({
timeFormat: 'h:mm',
displayEventTime: false,
});
但是当我想在某些情况下显示某个事件的时间时,我该怎么办呢? 我尝试过这样但它不起作用。
//ev is the event object made by ajax call
if ( /*this event is confirmed*/ ) {
ev.displayEventTime = true;
}