我正在以这种方式为 Facebook 共享打开一个子窗口:
window.open(sharingUrl,'','toolbar=0,status=0,width=626,height=436');
当用户单击共享或关闭时,窗口会自动关闭...
有没有办法为这些事件添加侦听器?
我正在以这种方式为 Facebook 共享打开一个子窗口:
window.open(sharingUrl,'','toolbar=0,status=0,width=626,height=436');
当用户单击共享或关闭时,窗口会自动关闭...
有没有办法为这些事件添加侦听器?
如果在调用 时存储对子窗口的引用window.open()
,则可以setInterval()
使用该window.closed
属性轮询以查看窗口是否仍处于打开状态。下面的示例每秒检查两次。
var child = window.open('http://google.com','','toolbar=0,status=0,width=626,height=436');
var timer = setInterval(checkChild, 500);
function checkChild() {
if (child.closed) {
alert("Child window closed");
clearInterval(timer);
}
}
对其他人的注意:如果您曾经处于可以控制子窗口中的 html 的情况,您可以利用onbeforeunload事件并提醒父窗口。
为了将来参考,我想分享另一个不需要的解决方案setInterval
:
var child = window.open('http://google.com','','toolbar=0,status=0,width=626,height=436');
child.onunload = function(){ console.log('Child window closed'); };
这将正常工作
<html>
<head>
<title>Detecting browser close in IE</title>
<script type="text/javascript">
window.onbeforeunload = function(){ myUnloadEvent(); }
function myUnloadEvent() {
alert ('You can have Ur Logic Here ,');
}
</script>
</head>
</script>
</head>
<body >
<h1>Close the Window now</h1>
</body>
</html>