JavaScript 日期操作
我有一个字符串
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
一切都在我们之前被发明了:
http://www.mattkruse.com/javascript/date/
Everything has been invented before us:
http://www.mattkruse.com/javascript/date/
您可以为此使用日期对象。只需解析日期字符串的第一部分即可获取各个数字并使用
setFullYear()
、setMonth()
、setDate()
。您必须从月份中减去 1,但然后使用 toDateString() ,它会像您的示例一样输出它。 http://www.w3schools.com/jsref/jsref_obj_date.aspYou 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 thetoDateString()
and it outputs it like your example. http://www.w3schools.com/jsref/jsref_obj_date.asp