gpt4 book ai didi

javascript - 在arshaw fullcalendar中突出显示日期

转载 作者:行者123 更新时间:2023-11-28 20:29:05 24 4
gpt4 key购买 nike

我正在使用arshaw fullcalendar api 来渲染日历。现在我知道今天被突出显示了。同样,我有一个日期列表,我想在周 View 中突出显示。日期也可以在不同的周内。任何帮助表示赞赏。谢谢。

最佳答案

对于议程周和议程日 View ,可以通过更改 fullcalendar.js 文件来实现。

将附加参数传递给fullcalendar,例如highlightDays

highlightDays: [0,3,4]   // List of days to highlight  0 - Sunday ... 6 - Saturday

在fullcalendar.js updateCells()方法中

if(opt('highlightDays').indexOf(date.getDay()) > -1)
{
bodyCell.removeClass('ui-widget-content');
bodyCell.addClass('fc-day-highlight');
}

在 fc-day-highlight css 类中添加您想要为那些日子赋予的颜色,如下所示

background-color: #dddddd; 

关于javascript - 在arshaw fullcalendar中突出显示日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16771965/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com