我想为过去(所以昨天和往后)的事件设置不同的颜色,然后为以后的日期(今天和将来的日期)设置不同的颜色 我下面有代码,但是这对以后的日期不起作用
events: {
url: 'load_Emp_Roster.php',
error: function() {
$('#script-warning').show();
},
success: function(data){
for(var i=0; i<data.length; i++){//The background color for past events
if(moment(data[i].start).isBefore(moment())){//If event time is in the past change the general event background & border color
data[i]["backgroundColor"]="#f44336";
data[i]["borderColor"]="#336600";
}
else{
data[i]["backgroundColor"]="#4CAF50";
data[i]["borderColor"]="#336600";
}
}
}
},