0

我在 chrome/firefox 中运行它没有任何问题,但在 Internet Explorer 中却没有出现:有什么解决方案吗?

html:

<div id='calendar'></div>

js:

$(document).ready(function() {
var calendar = $('#calendar').fullCalendar({


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

2 回答 2

1

更新

这也适用于 IE:

http://jsfiddle.net/j6r4D/

我认为你搞砸了你的一些{ }地方......

老的:

你在用IE9吗?

http://arshaw.com/fullcalendar/support/

Fullcalendar 尚未使用 Internet Explorer 9 进行测试,因此它可能无法正常工作...

编辑:

刚刚在 IE9 中测试了演示页面,它可以工作。所以这不是问题。

于 2012-04-23T10:41:45.740 回答
0

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

于 2012-04-23T18:28:09.593 回答