JQuery 日期选择器 -> dateformat,如何输出dayNamesMin而不是dayNamesShort?

发布于 2024-12-07 03:35:20 字数 198 浏览 1 评论 0原文

您好,我正在尝试输出日期的选择。使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抹茶夏天i‖ 2024-12-14 03:35:20

尝试使用 jQuery UI 日期选择器的 altFormat 选项,这应该允许您执行您想要的操作。

Try using the altFormat option of the jQuery UI date picker, this should allow you to do what you want.

萌吟 2024-12-14 03:35:20

奇怪的是,您无法使用 dayNamesMin 指定日期格式。不过,您可以在选项中指定 dayNamesShortdayNames。例如,您可以将 dayNamesMin 复制到 dayNamesShort 并在日期格式中使用 D

var minDays = $('#datepicker').datepicker('option', 'dayNamesMin');
$('#datepicker').datepicker('option', 'dayNamesShort', minDays);

查看实际操作:http://jsfiddle.net/william/bBA9F/3/

请注意,由于某种原因,在上述两条语句之后,#datepicker div 不会被隐藏,因此是 jsfiddle 中的最后一条语句。

Strange enough, you cannot specify a date format with dayNamesMin. You can, however, specify dayNamesShort and dayNames in your options. So, for example, you could copy dayNamesMin to dayNamesShort and use D in your date format.

var minDays = $('#datepicker').datepicker('option', 'dayNamesMin');
$('#datepicker').datepicker('option', 'dayNamesShort', minDays);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文