function logout(){//用户退出登录
if (!confirm('是否真的要离开?'))
{
return
}
var s = "toolbar=yes,directories=yes,status=yes,scrollbars=yes,resizable=yes,menubar=yes,left=0,top=0,location =yes,width="+screen.availWidth+",height="+screen.availHeight+""
top.open('lout.asp','_blank',''+s+'',true)
top.opener=null
top.close()
}
</script>
<body>
<A href="javascript:logout()">离开</A>
</body>
监听浏览器离开页面的操作:οnbefοreunlοad具体如下:
<body οnbefοreunlοad="goodbye()">
window.οnbefοreunlοad=function(e){
var e = window.event||e
e.returnValue=("确定离开当前页面吗?")
}
不知道你说的不行是什么原因,可以贴出代码看看
<script type="text/javascript">window.onunload=function(){
alert('用户要离开啦')
}
</script>
刷新页面。关闭页面,都会提示哦,。。
------------
不明白就追问哦,我帮你解答,^_*