jquery datepicker 使用 .serialize() 发送日期而不是字符串
当我使用 .serialize() 发送日期时,它作为字符串发送,而不是精确的日期格式...有没有办法可以将其作为 09/01/2010 发送...而不是作为字符串发送
When I am sending my date using .serialize() it is sending as an string not exact date format ...is there a way I can send it as 09/01/2010... not as a string
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所有内容都作为字符串发布到服务器...这就是 HTTP POST 的工作原理。您可以更改格式,但无论您使用哪种日期格式,它都将是一个字符串。
如果您使用 jQuery UI Datepicker,您可以填充另一个字段用于发布使用
altField
和altFormat
选项,例如:对于格式信息,在此处查看我们的选项。
Everything is posted to the server as a string...this is just how HTTP POST works. You can change the format, but it'll be a string no matter what date format you use.
If you're using the jQuery UI Datepicker you can populate another field used for posting use the
altField
andaltFormat
options, for example:For format information, check our your options here.
Datepicker 只是将值写入输入框,该输入框是一个字符串。在此表单发布到的页面中,您可以将字符串转换为日期。
Datepicker just writes values to a input box, which is a string. In the page this form is being posted to, you can convert the string to a date.