自定义sharethis的电子邮件小部件

时间:2013-05-18 08:06:49

标签: javascript url sharethis

我在我的网站中使用ShareThis小部件,此处尝试自定义以下所示的电子邮件小部件的一些功能: -

enter image description here

目前,当您将鼠标悬停在此电子邮件图标上时,会出现一个对话框: -

enter image description here

我要做的是,让图标的弹出窗口禁用并实现一个将我带到指定网址的网址,让我说http://www.google.com ...

我还尝试将window.open添加到范围: -

在: -

<span class='st_email_large' displayText='Email'></span>

在: -

<span class='st_email_large' displayText='Email' onClick="window.open('http://www.google.com'); return false;"></span>

但不幸的是我的所有想法都是浪费,他们的onclick javascript没有回应?对此有何解决方案?

1 个答案:

答案 0 :(得分:3)

当我在sharethis.com网站上的Javascript控制台中输入时,此代码段适用于我:

// Disable Sharethis popup
$(".st_email_large")[0].onclick = null;
// Load url instead
$(".st_email_large").click(function() { window.location.href = "http://google.com"; });

你需要jQuery。