我設置了一個谷歌+分享按鈕,並且想知道什麼時候有人分享了鏈接,以便我可以執行操作。您可以使用onendinteraction
屬性在共享按鈕上註冊回調,並且文檔指出,只要共享框已關閉並且共享完成,就會調用此回調。谷歌+分享和onendinteraction - 沒有確認
在關閉窗口我的函數被調用,而不是在該鏈接實際上是共享:
function redirectGooglePlus(jsonParam) {
alert(jsonParam.type);
}
<div class="g-plus" data-action="share" data-annotation="vertical-bubble" data-height="60"
data-href="http://mywebsite.com" data-onendinteraction="redirectGooglePlus"></div>
我的功能redirectGooglePlus
只會被調用時hover
類型,永不confirm
(這是這應該意味着共享一個已經完成。
有誰知道爲什麼功能不與confirm
?
僅供參考谷歌的份額文檔他叫回復: https://developers.google.com/+/web/share/
看起來像這是一個錯誤:https://code.google.com/p/google-plus-platform/issues/detail?id=396 –
而他們仍然沒有解決這個錯誤。從這樣一家大公司中相當可憐 – Rossco