jquery 将数字转换为日期?
我有一个以纪元格式返回 "date_created":"1273185387"
的 json 文件,
我想将其转换为类似这样的内容 Thu, 06 May 2010 22:36:27 GMT
有任何脚本可以执行此转换吗?
i have a json file that returns "date_created":"1273185387"
in epoch format
i want to convert it to something like this Thu, 06 May 2010 22:36:27 GMT
any script to do this conversion?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
http://jsfiddle.net/mattball/8gvkk/
http://jsfiddle.net/mattball/8gvkk/
尝试下面的代码...
Try the below code...
jQuery 没有任何相关功能,但这没关系,因为 JavaScript 有。
Date
构造函数接受一个自纪元以来的毫秒值,因此在您的情况下(因为它看起来像秒值)它将是:...where
obj
是该 JSON 字符串反序列化的结果。详细信息请参见规范第 15.9.3.2 节。或者,MDC 页面也很有用。
jQuery doesn't have anything for it, but that's okay, because JavaScript does. The
Date
constructor accepts a milliseconds-since-the-Epoch value, so in your case (since that looks like a seconds value) it would be:...where
obj
is the result of deserializing that JSON string.Details in Section 15.9.3.2 of the specification. Alternately, the MDC page is useful.
在 jQuery 中将 json 日期转换为日期格式
Convert json date to date format in jQuery
http://jsfiddle.net/y3Syc/1/
http://jsfiddle.net/y3Syc/1/