当前位置: 代码迷 >> Web前端 >> 页面点击封锁事件
  详细解决方案

页面点击封锁事件

热度:265   发布时间:2012-09-02 21:00:34.0
页面点击关闭事件

        <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>

  相关解决方案