jquery datepicker 日期格式与 Zend_Locale 的输出
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我在 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.
我不确定这是否是您正在寻找的,但是:
Iam not sure if this is what you're looking for but: