首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > Web前端 >

页面点击封锁事件

2012-09-02 
页面点击关闭事件script typetext/javascriptwindow.onbeforeunload function() //author: meizz{v

页面点击关闭事件
        <script type="text/javascript">  
       window.onbeforeunload = function() //author: meizz     
    {     
           var n = window.event.screenX - window.screenLeft;     
           var b = n > document.documentElement.scrollWidth-20;     
           if(b && window.event.clientY < 0 || window.event.altKey)     
           {     
                 // alert("是关闭而非刷新");  
                  window.location.href="${pageContext.request.contextPath}/jsonlogin/logout.action";
                 // window.event.returnValue = ""; //这里可以放置你想做的操作代码     
           }     
    }
       </script>

热点排行