关于捕获用户何时点击window.onbeforeunload的取消事件


Posted in Javascript onMarch 06, 2011

Detecting When The User Has Clicked Cancel
One of the things you may want to do is to be notified when the user clicks cancel, aborting a page unload. Unfortunately there's no way to be immediately notified. The best you can do is to set a unique global variable in your "onbeforeunload" event and then look to see if that variable has been set in other functions. There is no way to get an immediate notification that the user has aborted a page unload.
The example code I used above to do an example of an "onbeforeunload" dialog is as follows:

var _isset=0; function demo() { 
window.onbeforeunload = function () { 
if (_isset==0) { 
_isset=1; // This will only be seen elsewhere if the user cancels. 
return "This is a demonstration, you won't leave the page whichever option you select."; 
} 
} 
_isset=0; 
window.location.reload(); 
return false; 
}

This code defines a global variabled named _isset, and then initializes it to zero. In our "onbeforeunload" event the variable is checked and if it's set to one, no unload dialog box will appear. The only way _isset could ever be one is if the user previously aborted a page unload.

But as you can see this method won't help you if you need to be immediately notified that that the user has finished dealing with the confirmation box. You can detect when it appears on the screen but there's no way to know when the user has finished interacting with it if the user clicked cancel (if the user clicked OK, then of course the unload event will have been tripped).
--------------------------------------------------------------
虽然如此,但还是有高手给出了如下代码 ^^

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" 
"http://www.w3.org/TR/html4/strict.dtd"> 
<html><head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
<meta http-equiv="Content-Style-Type" content="text/css"> 
<meta http-equiv="Content-Script-Type" content="text/javascript"> 
<title>onbeforeunload test</title> 
<script type="text/javascript"><!-- 
window.onbeforeunload = function() { 
// in Firefox and Netscape 7.2+ the setTimeout or setInterval do not wait 
// to be executed until after the user clicks one of the buttons in the 
// confirm()-like box. //setTimeout("alert('hi from setTimeout()');",500); 
// setTimeout() and setInterval() aren't called when ok is clicked in 
// IE5-6/Win, but is called in IE7 when the time is short, but not when 
// it's longer, like 500 (a half second). 
window.unloadTimer = setInterval( 
"alert('hi from setInterval()');clearInterval(window.unloadTimer);",500); 
window.onunload = function() {clearInterval(window.unloadTimer);} 
return 'onbeforeunload testing'; 
} 
// --> 
</script> 
</head> 
<body> 
<h1>onbeforeunload test</h1> 
</body> 
</html>

<script type="text/javascript"> 
//<![CDATA[ 
var 
is_asked = false; window.onbeforeunload = 
function (ev) { 
var e = ev || window.event; 
window.focus(); 
if (!is_asked){ 
is_asked = true; 
var showstr = "CUSTOM_MESSAGE"; 
if (e) { //for ie and firefox 
e.returnValue = showstr; 
} 
return showstr; //for safari and chrome 
} 
}; 
window.onfocus = 
function (ev){ 
if (is_asked){ 
window.location.href = "http://www.google.com"; 
} 
} 
//]]> 
</script
Javascript 相关文章推荐
脚本吧 - 幻宇工作室用到js,超强推荐base.js
Dec 23 Javascript
写出更好的JavaScript程序之undefined篇(中)
Nov 23 Javascript
Jquery优化效率 提升性能解决方案
Sep 06 Javascript
基本jquery的控制tabs打开的数量的代码
Oct 17 Javascript
基于PHP+Jquery制作的可编辑的表格的代码
Apr 10 Javascript
JavaScript实现页面5秒后自动跳转的方法
Apr 16 Javascript
JavaScript从数组的indexOf()深入之Object的Property机制
May 11 Javascript
jQuery UI仿淘宝搜索下拉列表功能
Jan 10 Javascript
微信小程序 支付功能开发错误总结
Feb 21 Javascript
Angular.JS中的this指向详解
May 17 Javascript
vue2中引用及使用 better-scroll的方法详解
Nov 15 Javascript
ES6中Set和Map用法实例详解
Mar 02 Javascript
js中将具有数字属性名的对象转换为数组
Mar 06 #Javascript
js 优化次数过多的循环 考虑到性能问题
Mar 05 #Javascript
淘宝搜索框效果实现分析
Mar 05 #Javascript
再论Javascript下字符串连接的性能
Mar 05 #Javascript
再论Javascript的类继承
Mar 05 #Javascript
Array的push与unshift方法性能比较分析
Mar 05 #Javascript
js定义对象或数组直接量时各浏览器对多余逗号的处理(json)
Mar 05 #Javascript
You might like
强烈声明: 不要使用(include/require)_once
2013/06/06 PHP
php基于闭包实现函数的自调用(递归)实例分析
2016/11/11 PHP
PHP迭代与递归实现无限级分类
2017/08/28 PHP
ThinkPHP中获取指定日期后工作日的具体日期方法
2018/10/14 PHP
jQuery之日期选择器的深入解析
2013/06/19 Javascript
Angularjs编写KindEditor,UEidtor,jQuery指令
2015/01/28 Javascript
node.js中的forEach()是同步还是异步呢
2015/01/29 Javascript
JavaScript知识点总结之如何提高性能
2016/01/15 Javascript
javascript实现查找数组中最大值方法汇总
2016/02/13 Javascript
深入理解javascript作用域第二篇之词法作用域和动态作用域
2016/07/24 Javascript
BootStrap Tooltip插件源码解析
2016/12/27 Javascript
Vue获取DOM元素样式和样式更改示例
2017/03/07 Javascript
ES6中Proxy与Reflect实现重载(overload)的方法
2017/03/30 Javascript
Javascript中toFixed计算错误(依赖银行家舍入法的缺陷)解决方法
2017/08/22 Javascript
BootStrap Validator 根据条件在JS中添加或移除校验操作
2017/10/12 Javascript
vue基于mint-ui的城市选择3级联动的示例
2017/10/25 Javascript
JS实现的简单折叠展开动画效果示例
2018/04/28 Javascript
Windows下支持自动更新的Electron应用脚手架的方法
2018/12/24 Javascript
[02:23]2018DOTA2亚洲邀请赛趣味视频——反应测试
2018/04/04 DOTA
[01:00:30]完美世界DOTA2联赛循环赛 Inki vs Matador BO2第二场 10.31
2020/11/02 DOTA
Python读取mp3中ID3信息的方法
2015/03/05 Python
python处理Excel xlrd的简单使用
2017/09/12 Python
Python 最大概率法进行汉语切分的方法
2018/12/14 Python
使用卷积神经网络(CNN)做人脸识别的示例代码
2020/03/27 Python
想学画画?python满足你!
2020/12/24 Python
Move Free官方海外旗舰店:美国骨关节健康专业品牌
2017/12/06 全球购物
亚洲航空公司官方网站:AirAsia
2019/11/25 全球购物
教学质量评估实施方案
2014/03/17 职场文书
生日寄语大全
2014/04/08 职场文书
中华在我心中演讲稿
2014/09/13 职场文书
中学生秋季运动会广播稿
2014/09/21 职场文书
公司内部升职自荐信
2015/03/27 职场文书
申请吧主发表的感言
2015/08/03 职场文书
《平移和旋转》教学反思
2016/02/19 职场文书
详细总结Python常见的安全问题
2021/05/21 Python
唤醒紫霞仙子,携手再游三界!大话手游X《大话西游》电影合作专属剧情任务
2022/04/03 其他游戏