我在我的网站上使用此代码+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按钮工作正常。
我该如何解决?
UPDATE 我找到了一种解决方法。问题是按钮显示但是它改变了它的样式,因此按钮被移动到顶部,左边(-1000px)。
这解决了我的问题:
#___plusone_0, #___plusone_0 iframe {
position:static !important;
width:60px !important;
height:70px !important;
}