如何将当前月份发送到 jQuery FullCalendar
我正在尝试使用 jquery 完整日历
我找不到如何检索用户当前所在的月份在某个时刻。
在渲染时,它在标题中设置为当前月份,但我找不到使用该信息的方法。我想将月份与附加参数(开始、结束、_)一起发送到我的 ajax 调用,但我不知道如何。
在 fullcalendar
定义中,如何检索当前显示的月份?
I'm trying to use jquery Full Calendar
I could not find how I can retrieve the current month a user is on at a certain moment.
On render, it is set as the current month in the title, but I can't find a way to use that info. I want to send the month to my ajax call together with additional params (start, end, _) but I don't know how.
Inside the fullcalendar
definition, how do I retrieve the month currently displayed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
很抱歉回复得太晚了。这就是你想要的:
http://arshaw.com/fullcalendar/docs/current_date/getDate/
sorry for the really late response. here is what you would want:
http://arshaw.com/fullcalendar/docs/current_date/getDate/
下面以长格式显示当前月份,但可以返回许多其他格式:
http://arshaw.com/fullcalendar/docs/utilities/formatDate/
The following shows the current month in long format but can return many other formats:
http://arshaw.com/fullcalendar/docs/utilities/formatDate/
函数 getMonth() 将返回月份的整数。
the function getMonth() will return an integer of the month.