fullcalendar更改为24小时格式js

时间:2018-08-20 12:06:56

标签: javascript fullcalendar

我在项目中使用fullcalendar.io v2.4。 我试图找出如何更改日期格式。 我看着https://fullcalendar.io/docs/slotLabelFormat,并且了解到需要将'slotLabelFormat'更改为:

slotLabelFormat:"HH:mm"

但是“ slotLabelFormat”应该在哪里? 谢谢你的帮助

1 个答案:

答案 0 :(得分:0)

大概是这样的...

    $('#calendar').fullCalendar({
        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'month,basicWeek,basicDay'
        },
        defaultDate: (new Date()).toISOString().substring(0, 10),
        navLinks: true, 
        slotLabelFormat:"HH:mm",
        editable: true,
        eventLimit: true, 
        events: 'feed.php'
    });