我正在使用fullcalendar和它正常工作。我从http://www.codeproject.com/Articles/638674/Full-calendar-A-complete-web-diary-system-for-jQue获得了教程
但是这里有一些像“12a”这样的不需要的字符串随附所有事件标题。我想删除这个不需要的名字。我检查了css和js文件,但我无法找到它包含在哪里。
任何人帮我从所有事件名称中删除这个“12a”字符串。
这个“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;
}
要删除“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,
});