单击时,谷歌共享弹出窗口不会打开

时间:2017-01-24 07:09:36

标签: javascript web google-plus web-development-server

我正在使用谷歌共享按钮,但由于某种原因,它不会打开一个弹出窗口,而是在同一窗口的全屏幕上打开它。

<a class="google-plus" style="display:inline-block" href="https://plus.google.com/share?url=http%3A%2F%2Ftarunkrishna.com%2F" title="Share on Google+">
  <span class="fa fa-google-plus"></span>
</a>

1 个答案:

答案 0 :(得分:0)

您只有<a>个链接,这就是它们的工作方式。从Google+ Share Link documentation开始,您应该包含onclick处理程序。完整的文档示例是:

<a href="https://plus.google.com/share?url={URL}" onclick="javascript:window.open(this.href,
  '', 'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600');return false;"><img
  src="https://www.gstatic.com/images/icons/gplus-64.png" alt="Share on Google+"/></a>