自定义Facebook共享按钮适用于除Firefox以外的所有浏览器

时间:2015-04-17 20:27:47

标签: javascript jquery html twitter-bootstrap firefox

我将此代码用于我的Facebook分享按钮。它适用于除Firefox以外的所有地方。

如果工作正常,会弹出一个小窗口,其中包含一个在Facebook上共享给定页面的选项。在Firefox上,弹出窗口,但原始选项卡打开" javascript:fbshareCurrentPage()"在浏览器中,导致页面简单地说" false"

我在Bootstrap工作

这是javascript:

<script language="javascript">
function fbshareCurrentPage()
{window.open("https://www.facebook.com/sharer/sharer.php?
u="+escape(window.location.href)+"&t="+document.title, '', 
'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=300,width=600');
return false; }
</script>

和html:

 <a style="background:#337ab7; color:#ffffff;" class="btn btn-social-icon
 btn-facebook" href="javascript:fbshareCurrentPage()"  alt="Share on Facebook">
<i class="fa fa-facebook"></i>
</a>

1 个答案:

答案 0 :(得分:0)

使用void()

javascript:void(fbshareCurrentPage())

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Operators/void