0

我的网站中有Google Plus BadgeGoogle +1 按钮
的代码, 我需要在新窗口中打开指向 Google+ 页面(由 Badge 生成)的链接。

如果您有其他方法,我需要:

  • 链接到 Google+ 信息页。
  • 添加添加到圈子的功能。
  • +1 带有计数的按钮。

都在一条线上。

我的代码如下所示:

<table>
<tr>
<td style="padding-top:2px; vertical-align:top;"><div style="width:180px; height:30px;     overflow:hidden;">
<div style="margin-top:-15px; margin-left:0px;" title="International Studies Google         Plus">
                <style type="text/css">
                             #___plusone_0, #___plusone_0         iframe{
                                 width:66px !important;
                             }
                            </style>
                <div class="g-plus" data-href="https://plus.google.com/118182458881247471225?rel=publisher" data-width="170" data-height="69" data-theme="light"></div>
              </div>
            </div></td>
              <td style="padding-top:6px; padding-left:5px;"><g:plusone></g:plusone>    </td>
</tr>
</table>
4

1 回答 1

0

你不能这样做。

徽章不提供任何允许您在新窗口中打开链接的标志。它也是提供您需要的“添加到圈子”功能的唯一功能。

您可以获得的最接近的方法是使用静态徽章和 +1 按钮:

<div>
  <a href="https://plus.google.com/118182458881247471225?prsrc=3" rel="publisher" style="text-decoration:none;" target="_blank">
  <img src="//ssl.gstatic.com/images/icons/gplus-32.png" alt="Google+" style="border:0;width:32px;height:32px;"/></a>

  <div class="g-plusone" data-annotation="inline" data-width="300"></div>
</div>

Also, it looks like there's a feature request for this functionality. If you star this feature request, you'll be notified about updates.

于 2012-07-19T17:32:31.473 回答