我想更改日期单元格的背景颜色,但我的代码没有更改单元格的颜色。事件的背景正在发生变化。这是我的代码。
eventRender: function (info) {
if(info.event.title == "FULL") { // if title contains "FULL"
$(info.el).css( {'background-color': 'red', 'border': '1px solid #14B9E2'} );
}
},
我如何访问该.fc
事件?因为我需要改变它的背景颜色。