1 回答
TA贡献1786条经验 获得超11个赞
Acalender不是 html 元素。您需要div使用 id将 a 添加到您的视图中:
<div id="calendar"><div>
并更新您的 javascript:
function GenerateCalendar(events) {
$('#calendar').fullCalendar('destroy'); //clear first
$('#calendar').fullCalendar({
contentheight: 400,
defaultdate: new date(),
timeformat: 'h(:mn)a',
header: {
left: 'prev,next today',
center: 'title',
right: 'month, basicweek, basicday, agenda'
},
eventlimit: true,
eventcolor: '#378006',
events: events
});
}
- 1 回答
- 0 关注
- 169 浏览
添加回答
举报