我尝试使用jQuery插件" fullcalendar"创建一个事件。我用下面的代码创建了一个事件,但它没有正确显示,事件显示" 7pGrant Andrews& Lily Brooke Live w / support @ The Black Bull",它应显示时间范围,然后显示事件名称。
我该如何解决这个问题?
这是我的代码:
$(document).ready(function () {
$('#calendar').fullCalendar({
events: [{
title: 'Grant Andrews & Lily Brooke Live w/ support @ The Black Bull',
start: '2014-05-23 19:00:00',
end: '2014-05-23 21:00:00',
allDay: false,
},
})
});
答案 0 :(得分:0)