我使用此功能更改一个日历的日期(arshaw 的 jquery fullcalender)。
function cal_gotoDate(d){
console.log('cal_gotoDate ' + curCal + ' ' + d);
$('#calendar'+curCal).fullCalendar('gotoDate', d);
cal_setTitle();
return false;
}
问题:日历将使用ajax动态加载。当用户尝试更改日期时,可能会发生未加载日历的情况。因此,如果它们未初始化,我会收到错误消息:
TypeError: $(...).fullCalendar is not a function
我想检查 fullcalender$('#calendar'+curCal)
是否已初始化。