码迷,mamicode.com
首页 > Web开发 > 详细

Js/Jquery 关闭 离开或刷新当前页面时提醒,和执行解绑取消提醒

时间:2018-10-06 16:40:50      阅读:187      评论:0      收藏:0      [点我收藏+]

标签:index   return   系统   --   fir   turn   document   技术   lan   

<script language="JavaScript">

     //当编辑内容改变时执行: $(window).bind(‘beforeunload‘,function(){return ‘------------------------------------------------\n提示:未保存的内容将会丢失。\n------------------------------------------------‘;}); //点发送按钮时执行:
function SendMail(){ console.log("发送...... 成功,马上关闭"); $(window).unbind(‘beforeunload‘);//这个是取消提醒 /* window.opener=null; window.open(‘‘,‘_self‘); window.close();*/ location.reload(); } </script>


 JS版:

技术分享图片
<script language ="javaScript">  
<!--关闭浏览器 -->  
var flag = true;  
window.onbeforeunload = function () {  
    if (flag) {  
       var evt = window.event || arguments[0];  
       var userAgent = navigator.userAgent;  
       if (userAgent.indexOf("MSIE") > 0) {  
           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 = ("该操作将会导致非正常退出系统(正确退出系统方式:点击退出系统按钮),您是否确认?");  
           }else {  
               return ("该操作将会导致非正常退出系统(正确退出系统方式:点击退出系统按钮),您是否确认?");  
           }  
       }else if (userAgent.indexOf("Firefox") > 0) {  
               return ("该操作将会导致非正常退出系统(正确退出系统方式:点击退出系统按钮),您是否确认?");  
       }  
    }  
}  
</script>  

Js/Jquery 关闭 离开或刷新当前页面时提醒,和执行解绑取消提醒

标签:index   return   系统   --   fir   turn   document   技术   lan   

原文地址:https://www.cnblogs.com/xieyongbin/p/9747415.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!