下面是我的代码。我不知道为什么日历工作但没有显示任何事件。非常感谢你的帮助。
var eventSTR = [{start: '2016-11-21',end: '2016-11-23',overlap: false,rendering : 'background', color: '#ff9f89'},];
$(document).ready(function() {
$('#calendar').fullCalendar({
header: {
left: 'prev,next',
center: 'title',
right: 'month',
},
defaultDate: today,
navLinks: false, // can click day/week names to navigate views
businessHours: true, // display business hours
editable: false,
event : eventSTR
});
});
答案 0 :(得分:1)
你在那里99%,只缺少两件事
1)您需要在设置文档就绪函数之前设置today变量:
var today = new Date();
2)你拼错了事件属性。你有:
event : eventSTR
应该是:
events : eventSTR