关闭浏览器使session立即失效的方法

来源:互联网 发布:中国网络恐怖主义现状 编辑:程序博客网 时间:2024/05/16 07:19
 onunload调用下面js函数

<script language="javaScript">
function removeline(){
if(event.clientX<0&&event.clientY<0)
  {
document.write('<iframe width="100" height="100" src="page/removeline.jsp"></iframe><OBJECT classid=CLSID:8856F961-340A-11D0-A96B-00C04FD705A2 height=0  id=WebBrowser width=0></OBJECT>');
document.all.WebBrowser.ExecWB(45,1);
}
}
</script>

if(event.clientX<0&&event.clientY<0)判断浏览器是关闭还是刷新 ,因为刷新也会调用onunload

document.all.WebBrowser.ExecWB(45,1);是无提示的关闭浏览器

removeline.jsp 加上invalidate()代码就可以了