在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称:rmm5t/jquery-timeago开源软件地址:https://github.com/rmm5t/jquery-timeago开源编程语言:JavaScript 62.2%开源软件介绍:timeago: a jQuery pluginTimeago is a jQuery plugin that makes it easy to support automatically updating fuzzy timestamps (e.g. "4 minutes ago" or "about 1 day ago") from ISO 8601 formatted dates and times embedded in your HTML (à la microformats). UsageFirst, load jQuery and the plugin: <script src="jquery.min.js" type="text/javascript"></script>
<script src="jquery.timeago.js" type="text/javascript"></script> Now, let's attach it to your timestamps on DOM ready - put this in the head section: <script type="text/javascript">
jQuery(document).ready(function() {
$("time.timeago").timeago();
});
</script> This will turn all <time class="timeago" datetime="2011-12-17T09:24:17Z">December 17, 2011</time> into something like this: <time class="timeago" datetime="2011-12-17T09:24:17Z" title="December 17, 2011">about 1 day ago</time>
<abbr class="timeago" title="2011-12-17T09:24:17Z">December 17, 2011</abbr> As time passes, the timestamps will automatically update. If you want to update a timestamp programatically later, call the $("time#some_id").timeago("update", "2013-12-17T09:24:17Z");
// or
$("time#some_id").timeago("update", new Date()); For more usage and examples: http://timeago.yarp.com/ For different language configurations: visit the Settings
// Display original dates older than 24 hours
jQuery.timeago.settings.cutoff = 1000*60*60*24; Changes
AuthorLicense |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论