我如何在Fullcalendar http://arshaw.com/fullcalendar/中更改本周的背景颜色



我想在Web浏览器的加载事件上更改当前一周的背景颜色。因此,每次我看到日历时,它显示当前一周仅在一个月视图中以任何背景颜色突出显示。

请帮助。

谢谢

在您的 $(document).ready函数中添加此行 - 完整启动之后:

$('.fc-today').siblings().addClass('week-highlight');

这里的fc-today是今天代表的类。让我知道这是否有帮助!

@ganeshk的答案已停止在完整日历的新介绍中工作。DayClick功能的更新答案:

dayClick: function(date, allDay, jsEvent, view) {
        // $(this).parent().siblings().removeClass('week-highlight');
        $('.week-highlight').removeClass('week-highlight');
        $(this).parent().addClass('week-highlight');
    }

相关内容

  • 没有找到相关文章

最新更新