我使用这个功能来关闭我的窗口.
这是确认框弹出窗口.
if(confirm("Sure you want to close the window"); { // yes return to submit function } else { // no return to Other call function } window.onclose = function() { alert('yes'); }
关闭窗口右上角的X符号我需要返回false.我试图使用这个window.onclose函数,但它没有弹起来.
有人可以帮我吗?
解决方法
不幸的是,弹出窗口没有任何可以收听的关闭事件,但是当窗口关闭时,会有一个关闭的属性.解决这个问题的一个解决方案是启动一个计时器,并每隔一秒检查子窗口的关闭属性,并在窗口关闭时清除定时器.这是代码:
var win = window.open('http://www.google.com','google','width=800,height=600,status=0,toolbar=0'); var timer = setInterval(function() { if(win.closed) { clearInterval(timer); alert('closed'); } },1000);