jquery datepicker 使用 .serialize() 发送日期而不是字符串

发布于 2024-09-18 06:33:24 字数 91 浏览 12 评论 0原文

当我使用 .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 技术交流群。

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

发布评论

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

评论(2

听不够的曲调 2024-09-25 06:33:24

所有内容都作为字符串发布到服务器...这就是 HTTP POST 的工作原理。您可以更改格式,但无论您使用哪种日期格式,它都将是一个字符串。

如果您使用 jQuery UI Datepicker,您可以填充另一个字段用于发布使用 altFieldaltFormat 选项,例如:

$("#datepicker").datepicker({
  altField: '#FieldToPost',
  altFormat: 'yyyy-mm-dd' //whatever format here
});

对于格式信息,在此处查看我们的选项

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 and altFormat options, for example:

$("#datepicker").datepicker({
  altField: '#FieldToPost',
  altFormat: 'yyyy-mm-dd' //whatever format here
});

For format information, check our your options here.

霊感 2024-09-25 06:33:24

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.

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