不需要的字符串与fullcalendar中的所有事件标题一起出现

问题描述 投票:4回答:2

我正在使用fullcalendar和它正常工作。我从http://www.codeproject.com/Articles/638674/Full-calendar-A-complete-web-diary-system-for-jQue获得了教程

但是这里有一些像“12a”这样的不需要的字符串随附所有事件标题。我想删除这个不需要的名字。我检查了css和js文件,但我无法找到它包含在哪里。

任何人帮我从所有事件名称中删除这个“12a”字符串。

jquery asp.net-mvc-4 fullcalendar
2个回答
6
投票

这个“12a”代表你的活动的开始时间,即“上午12点”。您可以更改日历选项中的格式:

$('#calendar').fullCalendar({
    events: [
        {
            title:  'My Event',
            start:  '2010-01-01T14:30:00',
            allDay: false
        }
        // other events here...
    ],
    timeFormat: 'H(:mm)' // uppercase H for 24-hour clock
});

资料来源:http://fullcalendar.io/docs/text/timeFormat/

如果您想隐藏活动的开始时间,只需将其添加到您的CSS:

.fc-time{
   display : none;
}

8
投票

要删除“12a”,请添加displayEventTime: false

$('#calendar').fullCalendar({
    events: [
        {
            title:  'My Event',
            start:  '2010-01-01T14:30:00',
            allDay: false
        }
        // other events here...
    ],
    timeFormat: 'H(:mm)' // uppercase H for 24-hour clock、
    displayEventTime: false,
});
© www.soinside.com 2019 - 2024. All rights reserved.