jQuery 从字符串更改数据格式
我有这个字符串: 2010-09-21T15:48:12.754+02:00
我会将其转换为以下格式: Tue Sep 21 15:48:12 CEST 2010
我如何使用 javascript 或 jQuery 做到这一点?
多谢。 议员。
I have this string:
2010-09-21T15:48:12.754+02:00
I would transform it in this format:
Tue Sep 21 15:48:12 CEST 2010
How can I do it with javascript or jQuery?
Thanks a lot.
MP.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个:
编辑
如果你愿意,你可以编写自己的日期格式,例如:
参见jsfiddle。
编辑
另一个例子:
Try this:
EDIT
If you want, you can write your own date format, for example:
See in jsfiddle.
EDIT
Another example:
试试这个:
Try this:
根据 Topera,创建一个日期对象,然后使用对象方法创建您喜欢的格式的字符串。
这是一个参考:http://www.w3schools.com/jsref/jsref_obj_date.asp
As per Topera, create a date object, then use the objects methods to create the string formatted as you like.
Here's a reference: http://www.w3schools.com/jsref/jsref_obj_date.asp
解决了。
谢谢。
Solved.
Thank you.