0

私は自分のウェブサイトにGoogle Plus バッジGoogle +1 ボタン
のコードを持っています。Google + ページへのリンク (バッジによって生成) が新しいウィンドウで開く必要があります。

他の方法がある場合は、次のものが必要です。

  • 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>

また、この機能に対する機能リクエストがあるようです。この機能リクエストにスターを付けると、更新について通知されます。

于 2012-07-19T17:32:31.473 に答える