欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  web前端

WEB页面离开时销毁对象_html/css_WEB-ITnose

程序员文章站 2022-06-05 20:05:05
...
WEB页面离开时销毁对象

 window.onbeforeunload=function() {    return "你确定要退出本系统吗?"; }  window.onunload=function(){     if(my&& my.sessionId){        Ext.Ajax.request({          url : './userSession.do?method=logout',          method : 'POST',          params : {             sessionId:  my.sessionId          }        });     } }