사용자가 브라우저 페이지를 닫고 알림을 팝업합니다

1733 단어 브라우저
function PageUnloader() {
    // 
    this.UnloadTips = true;

    var _this = this;

    this.Init = function() {
        // 
        window.onbeforeunload = function(e) { e = window.event || e; return _this.body_onbeforeunload(e); };    
    };
    
    //Unload ,  
    this.body_onbeforeunload = function(e) {
        if (this.UnloadTips) {
            return "Your project has not been saved and any changes made will be lost!";
        }
    };
}

var oUnloader = new PageUnloader();

좋은 웹페이지 즐겨찾기