如何实现chrome浏览器关闭页面时弹出“确定要离开此面吗?”

一、避免弹出提示框

在网上搜了很多,答案大都是设置window.onbeforeunload=null ,但是试用之后无效。

这个问题放了两天之后返回来再次想,终于找到了答案,在此和大家分享一下:

解除jquery离开页面弹出提(1) 先解除绑定在设置弹出内容为null。

 $(function(){

   $(window).unbind('beforeunload');

   window.onbeforeunload = null;

  })

二、其他相关[摘要]

(1)window的onunload和onbeforeunload事件

以下是指在js中实现,而非 <body onunload="close()"> 这种方法!

因为这样是在unload掉body的时候触发,而无论任何浏览器,都会在关闭的时候unload掉body的!

模型1:

 function close(){

 alert("this is a test");

 }

 window.onbeforeunload=close;

模型2:

 function close(){

     if(document.body.clientWidth-event.clientX< 170&&event.clientY< 0||event.altKey)

     {

         alert("this is a test");

     } 

 }

 window.onbeforeunload=close;     


复制代码

关于模型1:

1).刷新,多窗口和单窗口都适合.

2).单窗口ie关闭整个ie触发.

3).ie7多窗口中关闭单页触发

4)其他多窗口刷新触发.关闭单个和关闭整个都不触发

对于模型2:

1).ie单窗口 和ie7多窗口,都要关闭整个浏览器才触发

2).其他多窗口浏览器刷新.关闭单页,关闭整个都不触发

 (2)创建离开提示框

绑定beforeunload事件

 $(window).bind('beforeunload',function(){

     return '您输入的内容尚未保存,确定离开此页面吗?';

 });

解除绑定

 $(window).unbind('beforeunload');

 window.onbeforeunload = null;


以上是 如何实现chrome浏览器关闭页面时弹出“确定要离开此面吗?” 的全部内容, 来源链接: utcz.com/z/356621.html

回到顶部