用于显示特定日期的开放时间的日历插件?
我需要一个日历插件(最好是 jQuery 或更好的 WordPress),它可以在单击日期时显示开放时间。
开放时间根据星期几和季节而有所不同。
我已经看过各种日历插件,但其中大多数是日期选择器或面向发布事件。
I need a calendar plugin (preferably for jQuery or even better WordPress) that shows the opening hours when clicking on a date.
The opening hours vary depending on the day of the week and also on the season.
I already took a look at various calendar plugins but most of them are date pickers or oriented to publish events.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
FullCalendar 会做你想做的。
您需要在
dayClick
事件上设置处理程序(文档)。例如:
或者,您可以为每天创建一个事件,显示开放时间(或开放的总时间,包括关闭时间)。
FullCalendar will do what you want.
You will need to set a handler on the
dayClick
event (documentation).For example:
Alternatively you could create an event for each day that shows opening hours (or total hours opened, including closing hours).