Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/473.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 如何在internet explorer中运行fullCalendar?_Javascript_Jquery_Html_Internet Explorer_Fullcalendar - Fatal编程技术网

Javascript 如何在internet explorer中运行fullCalendar?

Javascript 如何在internet explorer中运行fullCalendar?,javascript,jquery,html,internet-explorer,fullcalendar,Javascript,Jquery,Html,Internet Explorer,Fullcalendar,我在chrome/firefox中运行它没有任何问题,但在internet explorer中它不会出现: 有什么解决办法吗 html: 更新 这也适用于IE: 我想你把你的{}搞砸了 旧版: 您正在使用IE9吗 Fullcalendar尚未使用Internet Explorer 9进行测试,因此可能无法使用 编辑: 刚刚在IE9中测试了demopage,它可以正常工作。所以这不是问题所在。问题很可能是属性或回调末尾不应该有逗号。确保除最后一个回调外,所有回调都用逗号删除。对回调中的所有属性

我在chrome/firefox中运行它没有任何问题,但在internet explorer中它不会出现: 有什么解决办法吗

html:

更新 这也适用于IE:

我想你把你的
{
}
搞砸了

旧版: 您正在使用IE9吗

Fullcalendar尚未使用Internet Explorer 9进行测试,因此可能无法使用

编辑:


刚刚在IE9中测试了demopage,它可以正常工作。所以这不是问题所在。

问题很可能是属性或回调末尾不应该有逗号。确保除最后一个回调外,所有回调都用逗号删除。对回调中的所有属性执行相同的操作。通常就是这样。如果它没有改变任何东西,请发布日历的完整代码,以便我们可以完整地查看它。我目前正在使用fullcalendar,它在所有浏览器中都能正常工作,包括ie6、ie7、ie8和ie9。谢谢你的回答。

OK。我无法查看该页面,因此我认为它可以是ActiveX配置。我会在家里试试,因为在我的工作中,我不能改变那些配置。为什么活动X会起作用?我认为您需要在这里提供一个链接,因为答案很可能是您如何获得用于填充日历的信息。IE在ajax方面比在其他方面更糟糕。
<div id='calendar'></div>
$(document).ready(function() {
var calendar = $('#calendar').fullCalendar({


        header: {
            left: 'prev,next today',
            center: 'title',
            right: 'month,agendaWeek,agendaDay'
        }, .....