gpt4 book ai didi

javascript - 全日历月份时间格式,如周

转载 作者:行者123 更新时间:2023-12-03 10:32:26 26 4
gpt4 key购买 nike

任何人都可以建议我如何将月份时间格式更改为看起来像星期格式?

有这个日历“框架”http://fullcalendar.io/views/month/如果你改为几周,你会发现它使用的时间是这样的:

start_time - end_time

月历 View 中,仅显示start_time .

我没有找到应该在哪里更改 View 以完全像一周一样显示它。

在默认选项中我找到了这个对象:

        timeFormat : {
// for agendaWeek and agendaDay
agenda: shortTimeformat + '{ - ' + shortTimeformat + '}', // 5:00 - 6:30
// for all other views
'': shortTimeformat.replace(/:mm/,'(:mm)') // 7pm
},

我尝试为其他 View 复制议程格式(只需将//7pm 格式替换为上面的格式),但它没有改变任何内容。

也许有人对此 Fullcalendar 有更多经验并可以提出一些建议?

最佳答案

您想要displayEventEnd option 。可以全局设置,也可以设置为 view-specific .

//Globally
$('#calendar').fullCalendar({
displayEventEnd: 'true',
...
}

//View specific
$('#calendar').fullCalendar({
views: {
month: {
displayEventEnd: 'true',
}
},
...
}

请注意,事件实际上必须有结束日期,否则不会显示。 JSFiddle有 3 种不同的事件类型:{start,end},{start},{allday}

关于javascript - 全日历月份时间格式,如周,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29145690/

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