我正在使用YouTube API并返回已上传的&更新时间格式为:2013-05-13T13:12:42.000Z(ISO 8601)。如何使用Javascript(或jQuery)获取相对时间?
有些消息来说,我试图将其结合起来,但是它们似乎都以不同的方式格式化日期。
答案 0 :(得分:2)
使用此timeDifference(new Date(), new Date().setTime(Date.parse("2013-05-13T13:12:42.000Z")))
如果您对“(ISO 8601)”部分有疑问,请使用此timeDifference(new Date(), new Date().setTime(Date.parse("2013-05-13T13:12:42.000Z (ISO 8601)".replace(/ *\(.*\)/,""))))
答案 1 :(得分:2)
var MyDate = new Date(
Date.parse
(
"2013-05-13T13:12:42.000Z (ISO 8601)"
.replace(/ *\(.*\)/,"")
)
);
var date_Str = MyDate.getMonth() +
1 +
"/" +
MyDate.getDate() +
"/" +
MyDate.getFullYear();
添加更多功能
1. MyDate.getHours()
2. MyDate.getMinutes()
3. MyDate.getSeconds()