gpt4 book ai didi

javascript - 使全日历滚动到当前时间?

转载 作者:数据小太阳 更新时间:2023-10-29 04:00:08 24 4
gpt4 key购买 nike

简单来说,有没有办法让fullcalendar在周 View 中滚动到当前时间位置?

如果有帮助,我正在使用 Ruby on Rails 和 jQuery

最佳答案

这是我用来在 View 中滚动到当前时间的内容:

var scrollTime = moment().format("HH:mm:ss");
$('#calendar').fullCalendar({
now: today,
scrollTime: scrollTime
});

出于用户体验目的,我四舍五入到最接近的时间这样用户可以清楚地看到日历 View 的位置(时间):

var scrollTime = moment().format("HH") + ":00:00";
$('#calendar').fullCalendar({
now: today,
scrollTime: scrollTime
});

查看完整日历 scrollTime参数。

关于javascript - 使全日历滚动到当前时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3317940/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com