Home  >  Article  >  Web Front-end  >  Destroy object when WEB page leaves_html/css_WEB-ITnose

Destroy object when WEB page leaves_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:49:021871browse

Destroy the object when the WEB page is left

 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          }        });     } }


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn