<small id='6kPC1'></small><noframes id='6kPC1'>

        <tfoot id='6kPC1'></tfoot>

        • <bdo id='6kPC1'></bdo><ul id='6kPC1'></ul>
        <legend id='6kPC1'><style id='6kPC1'><dir id='6kPC1'><q id='6kPC1'></q></dir></style></legend>

        <i id='6kPC1'><tr id='6kPC1'><dt id='6kPC1'><q id='6kPC1'><span id='6kPC1'><b id='6kPC1'><form id='6kPC1'><ins id='6kPC1'></ins><ul id='6kPC1'></ul><sub id='6kPC1'></sub></form><legend id='6kPC1'></legend><bdo id='6kPC1'><pre id='6kPC1'><center id='6kPC1'></center></pre></bdo></b><th id='6kPC1'></th></span></q></dt></tr></i><div id='6kPC1'><tfoot id='6kPC1'></tfoot><dl id='6kPC1'><fieldset id='6kPC1'></fieldset></dl></div>

        在浏览器关闭之前提示用户?

        Prompt User before browser close?(在浏览器关闭之前提示用户?)

          <tbody id='mdyUy'></tbody>
        <i id='mdyUy'><tr id='mdyUy'><dt id='mdyUy'><q id='mdyUy'><span id='mdyUy'><b id='mdyUy'><form id='mdyUy'><ins id='mdyUy'></ins><ul id='mdyUy'></ul><sub id='mdyUy'></sub></form><legend id='mdyUy'></legend><bdo id='mdyUy'><pre id='mdyUy'><center id='mdyUy'></center></pre></bdo></b><th id='mdyUy'></th></span></q></dt></tr></i><div id='mdyUy'><tfoot id='mdyUy'></tfoot><dl id='mdyUy'><fieldset id='mdyUy'></fieldset></dl></div>
          <tfoot id='mdyUy'></tfoot><legend id='mdyUy'><style id='mdyUy'><dir id='mdyUy'><q id='mdyUy'></q></dir></style></legend>

                • <bdo id='mdyUy'></bdo><ul id='mdyUy'></ul>

                  <small id='mdyUy'></small><noframes id='mdyUy'>

                • 本文介绍了在浏览器关闭之前提示用户?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我们有一个管理门户,我们的老师经常忘记在注销和/或关闭浏览器窗口之前下载他们最新的 PDF 说明.我环顾四周,但找不到我要找的东西.

                  We have an administrative portal that our teachers constantly forget to download their latest PDF instructions before logging out and/or closing the browser window. I have looked around but can't find what I'm looking for.

                  我想完成以下目标:

                  在用户关闭浏览器窗口之前,系统会提示他们您记得下载表单吗?"有两个选项,是/否.是则关闭,否则返回页面.

                  Before a user can close the browser window, they are prompted "Did you remember to download your form?" with two options, yes/no. If yes, close, if no, return to page.

                  在用户点击退出"按钮之前,他们会收到与上述相同的提示.

                  Before a user can click the 'logout' button, they are prompted with the same as above.

                  我第一次通过非常基本的代码(不适用于关闭浏览器)是:

                  My first pass at the very basic code (which does not work for browser close) is:

                  <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
                  <html xmlns="http://www.w3.org/1999/xhtml">
                  <head>
                  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
                  <title>Untitled Document</title>
                  
                  <script type="text/javascript">
                  function init() {
                      if (window.addEventListener) {
                          window.addEventListener("beforeunload", unloadMess, false);
                      } else if (window.onbeforeunload) {
                          window.onbeforeunload = unloadMess;
                      };
                  }
                  
                  function unloadMess() {
                      var User_Message = "[Your user message here]"
                      return User_Message;
                  }
                  </script>
                  </head>
                  
                  <body onload="init();">
                       hello this is my site
                  </body>
                  </html>
                  

                  编辑 - 新问题

                  下面提供的解决方案有效,但也有其自身的问题:

                  EDIT - NEW ISSUES

                  The solution provided below works but also has its own issues:

                  当用户单击链接以实际下载表单时,页面会认为他们正在尝试离开并反过来向他们显示错误消息!另外-我希望发生一个事件或另一个事件,但不一定同时发生.IE.他们点击注销"按钮,他们会看到 OnClick 事件,然后是浏览器提示.有什么想法吗?

                  When user clicks the link to actually download the forms, the page thinks they are trying to leave and in turn present an error message to them! Also - I would like for one event or another to occur but not necessarily both. I.e. they hit 'logout' button and they are presented with the OnClick event, THEN the browser prompt. Any ideas?

                  推荐答案

                  2017年更新

                  所有现代浏览器不再支持自定义消息.

                  All modern browsers do not support custom messages any longer.

                  window.onbeforeunload = function(evt) {
                     return true;
                  }
                  

                  这个用于关闭标签:

                  window.onbeforeunload = function(evt) {
                      var message = 'Did you remember to download your form?';
                      if (typeof evt == 'undefined') {
                          evt = window.event;
                      }
                      if (evt) {
                          evt.returnValue = message;
                      }
                  
                      return message;
                  }
                  

                  并使用 onClick 事件作为注销按钮:

                  and use onClick event for logout button:

                  onClick="return confirm('Did you remember to download your form?');"
                  

                  这篇关于在浏览器关闭之前提示用户?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                  相关文档推荐

                  在开发JS过程中,会经常遇到两个小数相运算的情况,但是运算结果却与预期不同,调试一下发现计算结果竟然有那么长一串尾巴。如下图所示: 产生原因: JavaScript对小数运算会先转成二进制,运算完毕再转回十进制,过程中会有丢失,不过不是所有的小数间运算会
                  问题描述: 在javascript中引用js代码,然后导致反斜杠丢失,发现字符串中的所有\信息丢失。比如在js中引用input type=text onkeyup=value=value.replace(/[^\d]/g,) ,结果导致正则表达式中的\丢失。 问题原因: 该字符串含有\,javascript对字符串进行了转
                  Rails/Javascript: How to inject rails variables into (very) simple javascript(Rails/Javascript:如何将 rails 变量注入(非常)简单的 javascript)
                  CoffeeScript always returns in anonymous function(CoffeeScript 总是以匿名函数返回)
                  Ordinals in words javascript(javascript中的序数)
                  getFullYear returns year before on first day of year(getFullYear 在一年的第一天返回前一年)

                  • <small id='1axhH'></small><noframes id='1axhH'>

                      <bdo id='1axhH'></bdo><ul id='1axhH'></ul>

                            <tbody id='1axhH'></tbody>
                          <tfoot id='1axhH'></tfoot>
                          <legend id='1axhH'><style id='1axhH'><dir id='1axhH'><q id='1axhH'></q></dir></style></legend>
                            <i id='1axhH'><tr id='1axhH'><dt id='1axhH'><q id='1axhH'><span id='1axhH'><b id='1axhH'><form id='1axhH'><ins id='1axhH'></ins><ul id='1axhH'></ul><sub id='1axhH'></sub></form><legend id='1axhH'></legend><bdo id='1axhH'><pre id='1axhH'><center id='1axhH'></center></pre></bdo></b><th id='1axhH'></th></span></q></dt></tr></i><div id='1axhH'><tfoot id='1axhH'></tfoot><dl id='1axhH'><fieldset id='1axhH'></fieldset></dl></div>