0

我有一个使用 fullCalendar 成功渲染的谷歌日历,但由于某种原因,我在我的#trainingCalendar div 中渲染了两个日历:一个在页面顶部空白,另一个是正确的(谷歌日历与显示的可点击事件相关联)下面一个。这是html,尽管它非常简单:

<body>
    <div id="training">  //more stuff will go in this div, but I wanted to keep it as simple as possible for troubleshooting
        <div id="trainingCalendar">
        </div>
    </div> 
    <br class="clearfix" />
    <div id="footer">
        &copy; 2012 darkermarkerproductions.com
    </div>
</body>

...这是页面本身:http ://www.darkermarkerproductions.com/trainingCalendar.html

我错过了什么?

4

1 回答 1

1

您正在运行它两次——一次在scriptMain.js的顶部附近,一次在底部附近。您需要删除此代码:

$('#trainingCalendar').fullCalendar({
    // your options here
});

scriptMain.js的底部开始。

于 2013-02-03T01:51:26.160 回答