如何使 FullCalendar 加载到指定月份的视图上?

发布于 2025-01-08 07:30:17 字数 351 浏览 1 评论 0原文

我想在加载时将参数传递给 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

尴尬癌患者 2025-01-15 07:30:17

这应该可以解决问题:完整日历文档

This should do the trick: Full Calender docs

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文