2013-05-18 51 views
1

的電子郵件插件我用我的網站ShareThis部件,在這裏想定製一些電子郵件控件的功能,如下圖所示: -自sharethis

enter image description here

目前,當你將鼠標懸停在此電子郵件圖標,會出現一個對話框: -

enter image description here

什麼,我要做的是,使彈出DISABL e此圖標,並執行一個URL,其帶我到指定的URL讓說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?任何解決方案?

回答

3

這段代碼工作對我來說,當我在JavaScript控制檯上sharethis.com網站鍵入:

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

您需要的jQuery它雖然。

+0

感謝回覆,負載URL腳本是從你的代碼運行,但仍然可以看到彈出的出現... – SaurabhLP

+0

@SaurabhLP你把你的腳本到'window.onload'? – MrROY

+0

@MrROY ya完成了,但沒有工作,實際上懸停popup nt隱藏... – SaurabhLP