如何格式化 jQueryUI 日期选择器日历的年份?
我可以通过 MonthNames 选项格式化日历顶部的月份。
但我不知道如何格式化年份。
我想将以下演示日历中的“June 2011”隐藏为“June 2011y”。
http://jqueryui.com/demos/datepicker/
I can format month which is on the top of calendar by monthNames option.
But I don't know how to format year.
I want to covert "June 2011" in the following demo calendar to like "June 2011y".
http://jqueryui.com/demos/datepicker/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
JSFiddle 示例
在 jQueryUI 文档:
使用指定的yearSuffix选项初始化日期选择器:
在初始化后获取或设置yearSuffix选项:
JSFiddle Example
In the jQueryUI documentation:
Initialize a datepicker with the yearSuffix option specified:
Get or set the yearSuffix option, after init:
http://docs.jquery.com/UI/Datepicker/formatDate
代码示例
http://docs.jquery.com/UI/Datepicker/formatDate
Code examples