关闭窗口执行事件

window.onbeforeunload    =     function ()    
    
var   n   =   window.event.screenX   -   window.screenLeft; 
    
var   b   =   n   >   document.documentElement.scrollWidth-20
    
if(b   &&   window.event.clientY   <   0   ||   window.event.altKey) 
    

        window.event.returnValue   
=   "don 't   close   me "
    }
 
}
 

你可能感兴趣的:(事件)