javascript日历插入变量

时间:2014-03-08 18:36:37

标签: javascript arrays variables events

我正在使用日历脚本来显示活动日期。我将事件放在名为eventdates的变量文件中。

我想在此处加入eventdates

$(document).ready(function () {
    // page is now ready, initialize the calendar...
    $('#calendar').fullCalendar({
        events: [
             eventdates;
        ]
        // put your options and callbacks here
    })
});

但那不起作用。我不知道如何修复它,因为我从数组中获取事件。

2 个答案:

答案 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以了解正确用法