jquery datepicker 日期格式与 Zend_Locale 的输出

发布于 2024-11-07 12:16:18 字数 338 浏览 0 评论 0原文

我正在尝试使用 Zend_Locale::getTranslationList('date', $locale); 返回的日期格式设置 jquery datepicker 元素的格式;

我的问题是 zend 返回字符串 ' dd/MM/yyyy' 用于日期格式,但 jquery 只需要 2 个字符表示年份,即 'dd/mm/yy',因此它输入年份两次20112011

是否有一些选项可以传递给 zend 或 jquery 以使它们以相同的方式工作?我已阅读文档,但似乎找不到任何内容

非常感谢您提前提供帮助!

I'm trying to set the format for a jquery datepicker element with the date format returned by Zend_Locale::getTranslationList('date', $locale);

My problem is zend returns the string 'dd/MM/yyyy' for the date format but jquery expects only 2 characters for the year ie 'dd/mm/yy', so it enters the year twice 20112011

Is there some option that can be passed to either zend or jquery to make them work in the same manner? I've read through the docs and can't seem to find anything

Many thanks for your help in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

避讳 2024-11-14 12:16:18

我在 python-django 框架中使用了 jquery 日期选择器,当我将日期格式指定为 dd/mm/yyyy 格式时,它返回 20112011,然后我将其更正为 dd/mm/yy,它仅返回 2011。您可以在 datepicker css 类中指定将日期格式指定为 dd/mm/yy。

I have used jquery date picker in python-django framework when I give date format as dd/mm/yyyy format it returns 20112011 then i have corrected it to dd/mm/yy and it returned 2011 only. you can specify in your datepicker css class to specify the date format as dd/mm/yy.

半寸时光 2024-11-14 12:16:18

我不确定这是否是您正在寻找的,但是:

   // use german local, change it to our needs :-)
    $locale = new Zend_Locale('de_DE');
    $result = Zend_Locale::getTranslationList('date', $locale);

    // returns dd.MM.yy (german!)
    echo $result['short'];

Iam not sure if this is what you're looking for but:

   // use german local, change it to our needs :-)
    $locale = new Zend_Locale('de_DE');
    $result = Zend_Locale::getTranslationList('date', $locale);

    // returns dd.MM.yy (german!)
    echo $result['short'];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文