码迷,mamicode.com
首页 > Web开发 > 详细

使用jquery脚本获取随笔、文章和评论的统计数,自定义显示位置

时间:2016-09-16 21:01:14      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:

  为了这个问题,花了好些时间去摸索,无奈没有搞定。于是,我就到博问去提问,终于搞定!

  在此,非常感谢SeayXu的热心帮助。

1、在需要的位置添加一个标签

<div id="stats_count_show"></div>

2、首页html页面添加js代码

<script type="text/javascript">
$(function() {
setTimeout(getAllCount, 3000);

function getAllCount() {
    var post = document.getElementById(stats_post_count).innerText.replace(/.*?(\d+).*?/g, $1);
    var article = document.getElementById(stats_article_count).innerText.replace(/.*?(\d+).*?/g, $1);
    var comment = document.getElementById(stats-comment_count).innerText.replace(/.*?(\d+).*?/g, $1);
    post = post != null || post != "" ? post : 0;
    article = article != null || article != "" ? article : 0;
    comment = comment != null || comment != "" ? comment : 0;
    document.getElementById(stats_count_show).innerText = "随笔 - " + post + " 文章 - " + article + " 评论 - " + comment + "\n";
}
});
</script>

3、显示效果

技术分享

使用jquery脚本获取随笔、文章和评论的统计数,自定义显示位置

标签:

原文地址:http://www.cnblogs.com/dinphy/p/5877023.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!