我正在使用日历脚本来显示活动日期。我将事件放在名为eventdates
的变量文件中。
我想在此处加入eventdates
:
$(document).ready(function () {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
events: [
eventdates;
]
// put your options and callbacks here
})
});
但那不起作用。我不知道如何修复它,因为我从数组中获取事件。
答案 0 :(得分:0)
删除分号:
$(document).ready(function () {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
events: [
eventdates
]
// put your options and callbacks here
})
});
或使用
$(document).ready(function () {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
events: eventdates
// put your options and callbacks here
})
});
如果eventdates
已经是数组。
答案 1 :(得分:0)
您必须确保将events
存储为数组,然后才能使用
$(document).ready(function () {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
events: eventdates
})
});
请查看此link以了解正确用法