FullCalendar未在JSON提要中显示IE / FF中的事件

时间:2012-12-28 13:58:48

标签: json fullcalendar

我有一个适用于Chrome的有效JSON-Feed(使用JSONLint验证)。但是在IE / FF中没有出现任何事件。我尝试使用不同的时间格式以及其他已在类似问题中回答的内容。

JSON Feed:

[{"id":"64","title":"","start":"1356517800","end":"1356521400","allDay":false}]

日历:

    $('.roomscal').fullCalendar({
events: 'http://..../events.php'
            });

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:-1)

您检查了缓存吗?

$.ajaxSetup ({ 
  // Disable caching of AJAX responses 
  cache: false; 
});

告诉jQuery不要缓存。

此处找到代码。 Stop jQuery .load response from being cached