Google+分享回调

时间:2013-09-17 17:56:51

标签: javascript callback google-plus

晚上好,

通过sharelink实施G +共享:用户点击图标和浏览器弹出窗口显示。

<a id="google-share-link" href="https://plus.google.com/share?url="> </a>

...

$("#google-share-link").on('click', function(event) {
    event.preventDefault();
    window.open(
        this.href,
        '',
        'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600'
    );
});

我必须在用户共享内容后实现一些回调。

我发现很多文章如何使用JavaScript API或准备好的片段,但找不到任何可以回调我的案例。

回调可以是JS函数或要触发的URL。

2 个答案:

答案 0 :(得分:3)

目前无法检测到用户是否共享了Google+ API支持的内容。

答案 1 :(得分:-1)

Something like this maybe. Haven't tested it. 

$("#google-share-link").on('click', function(event) {
    shareLink(event,function(){
         alert('shared');
    });
});

function shareLink(event, callback)
{
   event.preventDefault();
    window.open(
        this.href,
        '',
        'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=600'
    );
   callback();

}