j查询完整日历控制日期作为服务器日期



我需要将今天日期设置为服务器日期,但在fullCalendar中它将本地系统日期显示为今天日期。

我已经使用gotoDate选项设置了服务器日期,如下所示。

$('#calendar').fullCalendar('gotoDate', currentDate);

但是当我单击"今天"按钮时,它无法正常工作,它正在显示本地系统日期。请帮助我。

您可以在完整日历中设置默认日期:

https://fullcalendar.io/docs/current_date/defaultDate/

您必须

使用时刻插件(这是一个第三方插件,您必须在 FullCalendar 之前将其单独包含在您的项目中)

https://fullcalendar.io/docs/utilities/Moment/

我在单击今天按钮时设置了当前日期。代码如下。

$('.fc-today-button').click(function () {
     $('#calendar').fullCalendar('gotoDate', currentDate);
});

相关内容

  • 没有找到相关文章

最新更新