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

Posted dinphy

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用jquery脚本获取随笔文章和评论的统计数,自定义显示位置相关的知识,希望对你有一定的参考价值。

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

  在此,非常感谢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脚本获取随笔文章和评论的统计数,自定义显示位置的主要内容,如果未能解决你的问题,请参考以下文章

博客园首页新随笔联系管理订阅 随笔- 524 文章- 0 评论- 20 hdu-5810 Balls and Boxes(概率期望)

ajax 随笔 - 1 文章 - 141 评论 - 143 JavaScript 的简单学习2

python_day15_jquery

数组方法

如何在不使用 fql 的情况下获取帖子 URL 的 Facebook 点赞、分享和评论计数?

锋利的jQuery读书随笔