关闭浏览器时,清除SESSION 只适应于IE

//关闭浏览器时,清除SESSION 只适应于IE
function window.onbeforeunload(){
    if( event.clientY<0 || event.altKey )
    {
        location.href="${uri.loginout}?closeIE=true";  //只支持同步 异步时,当数据传出时,浏览器已关闭,所以不能使用
         alert('您已经成功退出,欢迎您再次使用华安网上交易系统');
//         $.ajax({
//             url:"${uri.loginout}?closeIE=true",
//             type: 'GET',
//             success: function(data){
//                 alert(data);
//                 if("success"==data){
//                  alert('您已经成功退出,欢迎您再次使用华安网上交易系统');
//             }
//             }
//         });
   
    }
    }

你可能感兴趣的:(session)