如何使 FullCalendar 加载到指定月份的视图上?
我想在加载时将参数传递给 FullCalendar,以便用户看到的第一个视图是我指定的月份。到目前为止,我发现了这一点:
$('#calendar').fullCalendar({
// options
});
var CurrentDate = new Date();
var CurrentYear = CurrentDate.getFullYear();
$('#calendar').fullCalendar( 'gotoDate', CurrentYear, 7);
上面的代码可以工作,但是插件写得很好,所以我猜测有一种方法可以将此信息作为选项最初传递给插件。谁能向我指出如何完成此操作的示例或文档?
I'd like to pass a parameter to FullCalendar when it's loading so that the first view the user sees is the month that I've specified. So far I've found this:
$('#calendar').fullCalendar({
// options
});
var CurrentDate = new Date();
var CurrentYear = CurrentDate.getFullYear();
$('#calendar').fullCalendar( 'gotoDate', CurrentYear, 7);
The code above works but the plugin is written quite well so I'm guessing there's a way to pass this information to the plugin as options initially. Could anyone point me to an example or documentation of how this is done?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这应该可以解决问题:完整日历文档
This should do the trick: Full Calender docs