如何用相对时间(“15 分钟前”)替换绝对时间(“下午 1:30”)并让它们自动更新?

发布于 2024-09-01 14:11:13 字数 115 浏览 6 评论 0原文

是否有一个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

薄荷港 2024-09-08 14:11:13

您可以使用 timeago jQuery 插件;这是处理这种情况的一种流行方法。如果您愿意,它还会为您进行更新,并且它支持微格式。

简而言之,它将所有 abbr 元素转换为 ISO 8601将时间戳转换为模糊时间戳。因此,如果您有

<abbr class="timeago" title="2015-01-10T15:00:00Z">January 10, 2015</abbr>

,并且当前时间是 2015 年 1 月 10 日 15:30Z,您将得到类似以下内容的

<abbr class="timeago" title="2015-01-10T15:00:00Z">30 minutes ago</abbr>

结果。

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 have

<abbr class="timeago" title="2015-01-10T15:00:00Z">January 10, 2015</abbr>

and the current time is 15:30Z on January 10, 2015, you'll get something like:

<abbr class="timeago" title="2015-01-10T15:00:00Z">30 minutes ago</abbr>

as a result.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文