Events FullCalendar在首次加载后未从json加载事件,IE中除外

Events FullCalendar在首次加载后未从json加载事件,IE中除外,events,rendering,fullcalendar,Events,Rendering,Fullcalendar,我已经测试了一些代码,我需要用我自己的json数据加载day视图 $('#day-calendar').fullCalendar('removeEvents'); // logic goes here to create dayViewEvents $('#day-calendar').fullCalendar('addEventSource', eval(dayViewEvents)); 此代码被调用多次。事件在IE中完美呈现,但在Chrome、FireFox和Safari中,除了在初始加载

我已经测试了一些代码,我需要用我自己的json数据加载day视图

$('#day-calendar').fullCalendar('removeEvents');
// logic goes here to create dayViewEvents
$('#day-calendar').fullCalendar('addEventSource', eval(dayViewEvents));
此代码被调用多次。事件在IE中完美呈现,但在Chrome、FireFox和Safari中,除了在初始加载时,项目不会显示

下面是json的一个示例

[{"id":"T111","title":"OLIVER DOUGLAS","allDay":false,"start":"2010-12-27T08:00:00","end":"2010-12-27T08:00:00","url":null,"className":"myClass","editable":false,"source":null,"description":null,"eventType":"A Task"},
{"id":"T345","title":"EB DAWSON","allDay":false,"start":"2010-12-27T09:00:00","end":"2010-12-27T10:00:00","url":null,"className":"myRedClass","editable":false,"source":null,"description":null,"eventType":"A Call"}]
我试过重新渲染,重新蚀刻,但没有效果。在IE中,它每次都与上述代码一起工作

还有一件事——我称之为“客户”,他们在日历上

谢谢,
保罗

我可能应该把这当作一个评论,但我想让它更具可读性

日历运行得很好,这是我在javascript中的错误。我有:

$('#day-calendar').fullCalendar('gotoDate', dt.getYear(), dt.getMonth(), dt.getDate());
而不是:

$('#day-calendar').fullCalendar('gotoDate', **dt.getFullYear**(), dt.getMonth(), dt.getDate());
显然IE从getYear返回2010,所有其他浏览器返回110。关键是要始终使用getFullYear而不是getYear,这是不推荐的。哦,好吧