我需要在fullcalendar(adamshaw)议程周视图中选择夜间模式,即显示夜间时间仅为例如晚上8点到早上8点(从晚上8点到晚上8点)是否对此有任何帮助?< / p>
答案 0 :(得分:0)
查看fullcalendar文档中的businessHours。您可以指定开始和结束时间以及可选的星期几。
{ start: '10:00', // a start time (10am in this example) end: '18:00', // an end time (6pm in this example) dow: [ 1, 2, 3, 4 ] // days of week. an array of zero-based day of week integers (0=Sunday) // (Monday-Thursday in this example) }
答案 1 :(得分:0)
非常简单:
minTime: "20:00",
maxTime: "32:00",
创建时在fullCalendar选项中使用此选项。