关闭浏览器销毁session

今天在处理用户在线状态查看时,碰到一个问题:如果用户关闭浏览器,在IE下,通过处理 页面unload时,document.location可正常触发销毁session的跳转,但google的chrome却无效,那么,到底有没有方法使chrome也生效呢,of course!只需要在unload时,替换JSESSIONID!例子如下:
$(window).unload( function () {
	var regex = /JSESSIONID=\w*/gi;
	document.cookie.replace(regex, "JSESSIONID="+Math.random().toString().substr(2));
	var url = "login!invalidSession.do";
	$.get(url,function(){
	});
} );

你可能感兴趣的:(关闭浏览器销毁session)