我正在使用谷歌共享按钮,但由于某种原因,它不会打开一个弹出窗口,而是在同一窗口的全屏幕上打开它。
<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>
答案 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>