这是什么时间格式?如何使用 JQuery 重新格式化它?

发布于 2024-09-16 11:43:01 字数 172 浏览 6 评论 0原文

这是什么时间格式?如何使用 JQuery 重新格式化它?它来自播客 XML 的发布。

Mon, 26 Jul 2010 19:15:58 -0700

这种日期格式有准确的名称吗?我在任何地方都没有看到过这个确切的东西,这让我有点困惑。我已经尝试过下面列出的插件,但它无法正常工作或无法输入此日期。

What time format is this and how can I reformat it using JQuery? It's from a pubdate from an podcast XML.

Mon, 26 Jul 2010 19:15:58 -0700

Is there a precise name for this date format? I haven't seen this exact one anywhere and it's baffling me a bit. I've tried the plugin listed below but it doesn't work correctly or take this date input.

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

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

发布评论

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

评论(2

别想她 2024-09-23 11:43:01

JS 理解该格式(RFC 1123):

javascript:alert(new Date(Date.parse('Mon, 26 Jul 2010 19:15:58 -0700')))

更多信息请参见: https:// developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse

JS understands that format (RFC 1123) :

javascript:alert(new Date(Date.parse('Mon, 26 Jul 2010 19:15:58 -0700')))

More here: https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Date/parse

三寸金莲 2024-09-23 11:43:01

你需要一个插件。快速搜索http://plugins.jquery.com/project/jquery-dateFormat

You'll need a plugin. A quick search pulled up http://plugins.jquery.com/project/jquery-dateFormat

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