FullCalendar:通过将鼠标悬停在时间段上来获取时间
如何获取时间段实际悬停的时间?
How do I get the time a time slot actually hovered?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何获取时间段实际悬停的时间?
How do I get the time a time slot actually hovered?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
找到了解决方案:
fullcalendar 中的这个选项对我有用
found a solution:
this option in fullcalendar works for me
我的目标是每个单元格的“数据日期”属性,在我的 vue 项目中使用此库的 vue 组件,使用此评论时的最新版本 5.8.0。当您将鼠标悬停在日历对象上时,您可以对日历对象执行类似的操作,然后在工具提示中或在页面上的任何位置显示日期值(首先使用 moment.js 等转换为时间格式)。
I'm targeting the "data-date" attribute for each cell with the following in my vue project using the vue component for this library using the latest version 5.8.0 at the time of this comment. You can do something similar with your calendar object when you do a mouseover on it and then use the date value (first converting to your time format using something like moment.js) in a tooltip or displayed anywhere on your page.