一聚教程网:一个值得你收藏的教程网站

最新下载

热门教程

一种在父窗口中得知 window.open()出的子窗口关闭事件的方法(定时器实现)

时间:2008-01-18 编辑:简简单单 来源:一聚教程网

parent.htm :



<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


热门栏目