3

我已集成“Pin It”按钮以在 pinterest.com 上分享我的产品图片。但它不会在我网站上的 pin it 按钮前面显示 pin 数。我写了以下代码。

这是我网站上的 pin it 按钮

<a class="pin-it-button" target="_blank" count-layout="horizontal" href="http://pinterest.com/pin/create/button/?url=http://www.techmodi.com/demo/bliise/products/MTY=/MTQ=/products&media=http://www.techmodi.com/demo/bliise/uploads/product/thumb/1341565713_89a084d6ff75306b0b7ed4c0a1d61916_medium.jpg&description=Nicholson Bag Black">
<img border="0" title="Pin It" src="//assets.pinterest.com/images/PinExt.png">
</a>

&此 js 文件包含在<body>标签关闭之前。

<script type="text/javascript" src="assets.pinterest.com/js/pinit.js"></script>

如果有人有,请建议我解决方案。

谢谢

4

2 回答 2

3

You need to load the JavaScript file asynchronously. Replace your script tag with the following:

<script type="text/javascript">
(function(d){
  var f = d.getElementsByTagName('SCRIPT')[0], p = d.createElement('SCRIPT');
  p.type = 'text/javascript';
  p.async = true;
  p.src = '//assets.pinterest.com/js/pinit.js';
  f.parentNode.insertBefore(p, f);
}(document));
</script>
于 2013-06-10T14:51:55.213 回答
1

在锚标签中添加always-show-count="true"

于 2012-10-12T10:08:57.240 回答