JQuery 日期选择器 -> dateformat,如何输出dayNamesMin而不是dayNamesShort?
您好,我正在尝试输出日期的选择。使用 D 选项可以显示“星期四”或“星期一”等日期。当我尝试使用“nl”本地化来本地化此格式时,输出再次很好地以 3 个字母表示,例如“don”或“maa”
但是为了将日期(使用 Javascript)解析为荷兰语,我需要'do'和'ma'所以dayNamesMin。有没有办法可以将 JQuery 日期选择器配置为正确的本地化日期?
Hi there i am trying to output the selection of a date. Using the D option gives me days like 'Thu' or 'Mon'. When i try to localize this format using the 'nl' localisation, the the output is again nicely in 3 letters such as 'don' or 'maa'
But for parsing the date (using Javascript) into the Dutch language i need to have the 'do' and 'ma' so the dayNamesMin. Is there a way that i can configure JQuery datepicker the correct localized day?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用 jQuery UI 日期选择器的
altFormat
选项,这应该允许您执行您想要的操作。Try using the
altFormat
option of the jQuery UI date picker, this should allow you to do what you want.奇怪的是,您无法使用
dayNamesMin
指定日期格式。不过,您可以在选项中指定dayNamesShort
和dayNames
。例如,您可以将dayNamesMin
复制到dayNamesShort
并在日期格式中使用D
。查看实际操作:http://jsfiddle.net/william/bBA9F/3/。
请注意,由于某种原因,在上述两条语句之后,
#datepicker
div 不会被隐藏,因此是 jsfiddle 中的最后一条语句。Strange enough, you cannot specify a date format with
dayNamesMin
. You can, however, specifydayNamesShort
anddayNames
in your options. So, for example, you could copydayNamesMin
todayNamesShort
and useD
in your date format.See this in action: http://jsfiddle.net/william/bBA9F/3/.
Note that, for some reason, the
#datepicker
div wouldn't be hidden after the two statements above, hence the last statement in the jsfiddle.