0

我已经创建了我的作品集并放了一个 Google+ 按钮。页面仍然没有样式,损坏的工具提示让我放慢了速度。问题出在哪里?

4

3 回答 3

0

您的样式表 css/style.css 中存在冲突的样式,这会导致问题。

如果我摆脱了该样式表,那么它应该可以正常工作。

于 2012-06-15T16:17:59.103 回答
0

代替:

<div class="g-plusone">
        </div>

尝试:

<g:plusone annotation="inline"></g:plusone>
于 2012-06-15T16:10:37.653 回答
0

我不确定您将代码放在哪里,但您想将其替换为:http ://www.google.com/webmasters/+1/button/

<!-- Place this tag where you want the +1 button to render -->
<g:plusone annotation="inline"></g:plusone>

<!-- Place this render call where appropriate -->
<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>
于 2012-06-15T16:09:38.233 回答