我正在编写一个 Ionic 3 项目,我使用 FullCalendar 插件来显示日历 ui。当我尝试更改日历上一天的背景时,页面模块中的此代码有问题。我使用了 FullCalendar 的 dayRender 函数。
$('#calendar').fullCalendar({
dayRender: function (date, cell) {
var today = new Date('2017-09-11T00:40Z')
if (date.getDate() == today.getDate()) {
this.cell.css("background-color", "red");
}
},
});
我在输出中有这个运行时错误:
date.getDate() 不是函数。(在 'date.getDate()' 中,'date.getDate()' 未定义) Ionic 3 中的 FullCalendar
所以我不明白为什么,因为 date 是已经在 FullCalendar 库中定义的 Date 对象。
任何解决方案?
ps:对不起我的英语不好。