我已在我的网站上使用此代码 +1
<!-- Place this tag where you want the +1 button to render. -->
<div class="g-plusone" data-size="tall"></div>
<!-- Place this tag after the last +1 button tag. -->
<script type="text/javascript">
(function() {
var po = document.createElement('script'); po.type = 'text/javascript'; po.async = true;
po.src = 'https://apis.google.com/js/plusone.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s);
})();
</script>
但它只显示在没有查询的页面上 - 例如它显示在 index.php 但它没有显示在 index.php?id=1
Facebook 和 twitter 按钮工作正常。
我该如何解决?
更新我找到了一种解决方法。问题是按钮出现了,但它改变了它的样式,所以按钮被移动到左上角(-1000px)。
这解决了我的问题:
#___plusone_0, #___plusone_0 iframe {
position:static !important;
width:60px !important;
height:70px !important;
}