html 如果您对页面权重和访问者进行了粗略的评论,请仅根据需要加载Disqus评论。即使没有评论,即空评论

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 如果您对页面权重和访问者进行了粗略的评论,请仅根据需要加载Disqus评论。即使没有评论,即空评论相关的知识,希望对你有一定的参考价值。

// Requires jQuery of course.
$(document).ready(function() {
    $('.show-comments').on('click', function(){
          var disqus_shortname = 'YOUR-DISQUS-USERNAME'; // Replace this value with *your* username.

          // ajax request to load the disqus javascript
          $.ajax({
                  type: "GET",
                  url: "http://" + disqus_shortname + ".disqus.com/embed.js",
                  dataType: "script",
                  cache: true
          });
          // hide the button once comments load
          $(this).fadeOut();
    });
});
<!-- An element a visitor can click if they <3 comments! -->
<button class="show-comments">Load Disqus comments</button>

<!-- The empty element required for Disqus to loads comments into -->  
<div id="disqus_thread"></div>

以上是关于html 如果您对页面权重和访问者进行了粗略的评论,请仅根据需要加载Disqus评论。即使没有评论,即空评论的主要内容,如果未能解决你的问题,请参考以下文章

iOS评论页面的简单思路

Facebook Open Graph,提交故事评论

产品质量粗略控制流程

打印html页面时的边距

Python 爬取腾讯电视剧评论

Keras LSTM - 为啥“相同”模型和相同权重的结果不同?