使用FullCalendar,有什么办法可以通过编程方式将特定日期与其他日子不同吗?例如,在“月”或“周”的观点中,我想将日子没有发生变化,“红色”和有些事件的日子(但还没有完整的时间表)“黄色”.具有完整时间表的日子将正常着色(白色背景).有没有任何回调或CSS标签我可以利用添加这种行为?谢谢.
解决方法
根据Regin的答案
here,您可以通过在日历中设置dayRender事件来更改颜色:
$( "#calendar" ).fullCalendar(function() { dayRender: function (date,cell) { if ( !dateHasEvent(date) ) cell.css("background-color","red"); else if ( dateHasEvent(date) ) cell.css("background-color","yellow"); } }); function dateHasEvent(date) { // some code here }