我有这个错误
未捕获的类型错误:无法调用 crom 中 jquery 日历的“未定义的创建”方法。
任何人都可以解释这个原因吗?
通常,当错误的形式为无法调用未定义的方法“X”时,这意味着您尝试从中调用 X 的任何对象都不存在。
在文档就绪回调函数中加载脚本时启动 Fullcalendar,例如:
$(document).ready(function() {
// page is now ready, initialize the calendar...
$('#calendar').fullCalendar({
// put your options and callbacks here
})
});