IE关闭的时候发生,请问一下程序事件
SCRIPT language="JavaScript" for="window" event="onUnLoad">
在没有页面刷新的时候都会发生,而我想在IE关闭的时候发生,请问一下程序事件是什么?
问题点数:100、回复次数:4
Top
1 楼 hchxxzx(NET?摸到一点门槛) 回复于 2002-07-04 09:12:11 得分 0
sub onunload()
alert("请不要关闭我")
end subTop
2 楼 ruirui521(枫之舞) 回复于 2002-07-04 09:12:19 得分 100
IE本身没有什么好的办法,因为它没有onClose事件。但是可以如下判断,但是麻烦了点:
-------------------------------------------------------------------
一种在父窗口中得知window.open()出的子窗口关闭事件的方法
<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