如何在父窗口中得知window.open()出的子窗口关闭事件
如何在父窗口中得知window.open()出的子窗口关闭事件
发布时间:2016-12-30 来源:查字典编辑
摘要:复制代码代码如下:vartimervarwinOpenfunctionIfWindowClosed(){if(winOpen.closed=...

复制代码 代码如下:

<HTML>

<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>

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类