一种在父窗口中得知window.open()出的子窗口关闭事件的方法
添加时间: 2006-5-4 23:30:18 作者: ASP教程 阅读次数:57 来源: http://d9soft.com
<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>
------------------
There can be anything in child.htm
上一篇文章: 一个老个写的无组件上传 下一篇文章: 发送带附件的HTML格式邮件例程可以带附件
相关文章:

