晚上好,
通过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。
答案 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();
}