JavaScript 日期操作

发布于 2024-09-14 12:59:50 字数 241 浏览 2 评论 0原文

我有一个字符串

2010-08-02 12:13:06.0

并且需要从中获取类似

Fri Aug 6 2010

的内容(输入不会映射到我给出的值的输出,只是示例)

我担心我会必须进行一些字符串操作才能得到我想要的; js Date 对象似乎没有能够解析输入字符串的方法。

这是正确的吗?

我们正在使用 jquery,但无法在该库中找到任何有帮助的内容...

I have a string

2010-08-02 12:13:06.0

and need to get something like

Fri Aug 6 2010

out of it (the input does not map to the output for the values I gave, just examples)

I fear Im going to have to do some string manipulation to get what I want; the js Date object does not seem to have methods capable of parsing the input string.

Is this correct?

We are using jquery, but cant find anything in that library that would help...

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

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

发布评论

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

评论(2

小镇女孩 2024-09-21 12:59:50

一切都在我们之前被发明了:
http://www.mattkruse.com/javascript/date/

Everything has been invented before us:
http://www.mattkruse.com/javascript/date/

星星的軌跡 2024-09-21 12:59:50

您可以为此使用日期对象。只需解析日期字符串的第一部分即可获取各个数字并使用 setFullYear()setMonth()setDate()。您必须从月份中减去 1,但然后使用 toDateString() ,它会像您的示例一样输出它。 http://www.w3schools.com/jsref/jsref_obj_date.asp

You can use the date object for this. Just parse the first part of the date string to get the individual numbers and use setFullYear(), setMonth(), setDate(). You will have to subtract 1 from the month, but then use the toDateString() and it outputs it like your example. http://www.w3schools.com/jsref/jsref_obj_date.asp

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