Fullcalendar不起作用

时间:2017-05-19 12:05:31

标签: javascript events fullcalendar

我喜欢fullcalendar JQuery-Plugin。我的日历不起作用。目前我正在寻找一个添加活动的解决方案,但我不能......为什么? 这是我的代码:

$(document).ready(function() {
    $('#calendar').fullCalendar({
        defaultDate: '2017-05-11',
        editable: true,
        selectable: true,
        selectHelper: true,
        eventLimit: true, // allow "more" link when too many events
        select: function(start, end, allDay) {
            var title = prompt("Event here: ", "New Event:");
            if (title != null) {
                calendar.fullCalendar('renderEvent',
                    {
                        title: title,
                        start: start,
                        end: end,
                        allDay: allDay
                    },
                    true // make the event "stick"
                );
            }
            $calendar.fullCalendar("unselect");
        },
        events: [
            {   
                title: 'All Day Event',
                start: '2017-05-01'
            }
        ]
    });

});

1 个答案:

答案 0 :(得分:0)

您需要定义如下的变量日历

var calendar =  $('#calendar').fullCalendar({

然后它会起作用。