如何用相对时间(“15 分钟前”)替换绝对时间(“下午 1:30”)并让它们自动更新?
是否有一个 Javascript 脚本可以像 facebook 一样自动更改博客的时间和日期???
例如“10 分钟前”而不是“2010 年 5 月 15 日 12:30”。
-谢谢
Is there a Javascript script to change the time and date of blogs automaticly like facebook ???
for example "10 minutes ago" instead of "May 15 2010 12:30".
-Thank You
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
timeago
jQuery 插件;这是处理这种情况的一种流行方法。如果您愿意,它还会为您进行更新,并且它支持微格式。简而言之,它将所有
abbr
元素转换为 ISO 8601将时间戳转换为模糊时间戳。因此,如果您有,并且当前时间是 2015 年 1 月 10 日 15:30Z,您将得到类似以下内容的
结果。
You could use the
timeago
jQuery plugin; it's a popular way to handle this situation. It will also do the updating for you, if you like, and it supports micro-formatted goodness.In a nutshell, it turns all
abbr
elements with an ISO 8601 timestamp into fuzzy timestamps. Thus, if you haveand the current time is 15:30Z on January 10, 2015, you'll get something like:
as a result.