js在父窗口中获取window.open()出的子窗口关闭事件

发布时间:2020-08-31编辑:脚本学堂
本文介绍下,在父窗口中获取window.open()出的子窗口关闭事件的方法,能过一个js脚本来实现,有需要的朋友不妨作个参考。

本节主要内容:
分享一例js代码,在父窗口中得知window.open()出的子窗口关闭事件。

代码:
 

复制代码 代码示例:

<HTML>
<head>
<title>在父窗口中获取window.open()出的子窗口关闭事件-www.jb200.com</title>
</head>
<BODY>
<P> </P>
<form name=fm_Info>
<input type=text name=txtValue>
</form>
<script language=javascript>
var timer
var winOpen
function IfWindowClosed() {
if (winOpen.closed == true) {
document.fm_Info.txtValue.value="child closed"
window.clearInterval(timer)
}
}
</script>
<input type=button name=btnOpen value=open>

<script language=javascript for=btnOpen event=onclick>
document.fm_Info.txtValue.value=""
winOpen=window.open("child.htm","","toolbar=no, location=no, directories=no, status=no, menubar=no" )
timer=window.setInterval("IfWindowClosed()",500);
</script>
</BODY>
</HTML>