js 监控浏览器关闭事件
Posted nxmxl
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 监控浏览器关闭事件相关的知识,希望对你有一定的参考价值。
- <!DOCTYPE html>
- <html>
- <head>
- <title>监控浏览器关闭事件</title>
- </head>
- <style type="text/css">
- </style>
- <body>
- <div id="create_order">
- </div>
- </body>
- </html>
- <script type="text/javascript">
- var widowClose = {};
- widowClose.tip = "浏览器即将关闭,是否确定??";
- widowClose.set = function(a) {
- window.onbeforeunload = function(b) {
- b = b || window.event;
- b.returnValue = a;
- return a
- }
- };
- widowClose.clear = function() {
- fckDraft.delDraftById();
- window.onbeforeunload = function() {
- }
- };
- widowClose.set(widowClose.tip);
- </script>
以上是关于js 监控浏览器关闭事件的主要内容,如果未能解决你的问题,请参考以下文章
如何用JS捕捉 浏览器关闭事件,我想在浏览器关闭的时候记录一些日志。要兼容Firefox和IE 6、7、8 !3Q....