我正在使用一个书签,它可以让我在 Google Plus 上共享当前 URL。
这是JavaScript:
javascript:(function(){var w=480;var h=380;var x=Number((window.screen.width-w)/2);
var y=Number((window.screen.height-h)/2);
window.open('https://plusone.google.com/_/+1/confirm?hl=en&url='+encodeURIComponent(location.href)+'&title='+encodeURIComponent(document.title),'','width='+w+',height='+h+',left='+x+',top='+y+',scrollbars=no');})();
有没有办法检测“共享成功”事件并调用window.close()
?我在这个 JS 中如何称呼它?即使是这个方向的指针也会受到赞赏。