jqueryui datepicker dd/MM/yy 文化相关问题
我正在使用 jQueryUI datepicker 进行简单的“From”&我的 ASP.Net MVC Web 应用程序中的“截止”日期范围过滤器。工作正常,直到我遇到一台将日期时间格式(在区域设置中)设置为“dd-MM-yy”的机器。
在我的控制器中,我有一个回发操作,它接受自定义搜索对象作为参数,然后将其传递给搜索函数。此自定义对象具有“To”和“To”属性。 “起始”日期和往常一样,绑定会自动进行。在日期格式为“MM/dd/yy”的计算机上工作正常,但如果我在区域设置中将其设置为“dd/MM/yy”,则它无法解析日期。
最简单的解决方案可能是将日期选择器的格式更改为 “dd-MMM-yyyy”是一种非文化特定的日期格式,但我的客户想要 所选日期以 MM/dd/yyyy 格式显示。
有什么干净、简单的建议可以在日期选择器或控制器级别处理这个问题吗?
I'm using a jQueryUI datepicker for a simple "From" & "To" date range filter in my ASP.Net MVC web-app. Works fine until I hit a machine which had its datetime format (in the Regional Settings) set to "dd-MM-yy".
In my controller I've a postback action which accepts a custom search object as a parameter which is then passed to the search function. This custom object has the properties for "To" & "From" dates and as usual the binding takes place automatically. Works normal on a machine with date format "MM/dd/yy" but if I set it to "dd/MM/yy" in the regional settings then it is unable to parse the date.
The easiest solution could be to change the datepicker's format to
"dd-MMM-yyyy" a non-culture specific date format but my client wants
the selected date to be displayed in MM/dd/yyyy format.
Any clean and easy suggestion to handle this at the datepicker or controller level?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用具有自定义格式的隐藏字段:
HTML:
Javascript:
您将找到有关 jquery ui 日期格式的文档
You can use an hidden field with a custom format:
HTML:
Javascript:
You'll find documentation about jquery ui date format here