Timeago 插件无法在 JavaScript 中运行

发布于 2024-10-16 03:56:41 字数 188 浏览 1 评论 0原文

我有一个 标记,其类为 details italic ,并且 title 属性设置为最近时间,时间戳为2011-02-08 10:42:04。我该如何调用 timeago 插件才能获取 2 小时前 的值?

I have an <abbr> tag which has the class as details italic and the title property is set as the recent time with time stamp as 2011-02-08 10:42:04. How am i suppose to call the timeago plugin in order to get the value as 2 hours ago ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

溺孤伤于心 2024-10-23 03:56:41

说明对于时间戳格式非常特殊,它需要采用ISO 8601

<abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>

仅仅 2011-02-08 10:42:04 可能不行。

The instructions are pretty particular on the timestamp format, it needs to be in ISO 8601:

<abbr class="timeago" title="2008-07-17T09:24:17Z">July 17, 2008</abbr>

Just 2011-02-08 10:42:04 probably won't do.

怀中猫帐中妖 2024-10-23 03:56:41

我认为 文档 确实很好地解释了这一点。您是否尝试过但无法正常工作?

$(document).ready(function() {
    $("abbr.details.italic").timeago();
});

将在所有 abbr 元素(带有 details italic 类)上调用 timeago 并根据 title< 中设置的日期更改其值/代码> 属性。

I think the documentation does explain this pretty well. Did you try it and couldn't get it working?

$(document).ready(function() {
    $("abbr.details.italic").timeago();
});

Will call timeago on all abbr elements (with classes details italic) and change their value according to the date set in the title attribute.

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