-5

我有这个错误

未捕获的类型错误:无法调用 crom 中 jquery 日历的“未定义的创建”方法。

任何人都可以解释这个原因吗?

4

2 回答 2

0

通常,当错误的形式为无法调用未定义的方法“X”时,这意味着您尝试从中调用 X 的任何对象都不存在。

于 2012-10-22T08:27:22.610 回答
0

在文档就绪回调函数中加载脚本时启动 Fullcalendar,例如:

$(document).ready(function() {

    // page is now ready, initialize the calendar...

    $('#calendar').fullCalendar({
        // put your options and callbacks here
    })

});
于 2012-10-22T08:30:36.973 回答