jquery datepicker 中的日期格式
大家... 我想知道如何格式化日期选择器“d de MM de yy”中的日期而不是“dd/MM/yy”。
(假设日期是 21/01/2011(西班牙语)..所以: $("#element").datepicker({ 日期格式:'d de MM de yy' });
它将输出: 21 21e Enero 21e yy
问题是..是否有转义字符以便我可以格式化日期? 谢谢,对不起我的英语,希望你们能理解
everybody...
I was wondering how I could format the a date in the datepicker 'd de MM de yy' in stead of 'dd/MM/yy'.
(suppose the date is 21/01/2011 (in spanish) .. so:
$("#element").datepicker({
dateFormat:'d de MM de yy'
});
It will output : 21 21e Enero 21e yy
The question is.. is there an escape character so I can format the date?
Thanks, sorry for my English, hope you guys understand
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以转义任何纯文本字符:
您还可以使用单引号转义纯文本:
You can escape any plain text characters:
You may also be able to escape plain text using single quotes:
您可以在启动时定义日期选择器,然后稍后使用一个类来附加它。我已经定义了这样的日期选择器:
应该在选项/文档中进行解释。
You can define the datepicker on startup, then just use a class to attach it later. I've defined a datepicker like this:
Should be explained in the options/documentation.
试试这个日期格式和年份直到今年
Try this for date format and year till the current year