我正在使用fullcalendar并且工作正常。我从中获得了教程 http://www.codeproject.com/Articles/638674/Full-calendar-A-complete-web-diary-system-for-jQue
但是这里有一些像“12a”这样的不需要的字符串随附所有事件标题。我想删除这个不需要的名字。我检查了css和js文件,但我无法找到它包含在哪里。
任何人都帮我从所有活动名称中删除这个“12a”字符串。
答案 0 :(得分: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,
});
答案 1 :(得分:6)
这" 12a"代表您活动的开始时间,即" 12 am"。 您可以更改日历选项中的格式:
$('#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;
}
答案 2 :(得分:0)
如果我们使用displayEventTime: false
,它将删除该事件中的所有时间戳,
但是如果您想开始时间而不是其他时间/结束时间,请编写CSS。
根据最新版本的班级名称。
.fc-event-end .fc-event-time{
display: none;
}