1

我想在我的网站上使用 facebook Like 按钮和 Google+ 徽章。为此,我添加了此代码:

<table align='right'>
    <tr>
        <td align='right'>
        <div class="fb-like" data-href="https://www.facebook.com/RideForHealth" data-send="true" data-layout="box_count" data-width="100" data-show-faces="true"></div>

        </td>
        <td>
        <g:plus href="https://plus.google.com/107539471286877449345" rel="publisher" width="300" height="131" theme="light"></g:plus>
        </td>

    </tr>
</table>

但这不起作用。我单击按钮,但没有任何反应。当我删除 HTML 表格时,两者都可以正常工作。这是我使用它的网站。

4

2 回答 2

0

我想说试试这个插件的谷歌徽章

我在我的 wordpress 上使用它,它对我有用..

http://wordpress.org/extend/plugins/kd-google-plus-badge/

于 2012-11-15T21:12:48.967 回答
0

我想你忘记在你的脑海中添加这个js......


  (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);
  })();
于 2012-11-15T21:17:10.063 回答