12

请在 Chrome 浏览器中检查我的代码,如果您点击刷新,系统会提示您提供 2 个选项。

  1. 离开此页面并
  2. 保持此页上

当我点击2. Stay on this page按钮时,它必须激活我的自定义函数displayMsg()

任何人都可以为我提供解决方案吗?

<script type="text/javascript">
function displayMsg() {
    alert('my text..');
}
</script>
<script type="text/javascript">
window.onbeforeunload = function(evt) {
  var message = 'Please Stay on this page and we will show you a secret text.';
  if (typeof evt == 'undefined') {
      evt = window.event;
  }       
  if (evt) {
      evt.returnValue = message;
      return message;
  }
  trace(evt);
} 
</script>
4

3 回答 3

7

使用计时器来监听变化变量:

var vals=0;
function displayMsg() {
    alert('my text..');
}
window.onbeforeunload = function evens(evt) {
var message = 'Please Stay on this page and we will show you a secret text.';
  if (typeof evt == 'undefined') {
      evt = window.event;
  }       
    timedCount();
    vals++;
  if (evt) {
      evt.returnValue = message ;
      return message ;
  }
  trace(evt);
} 

function timedCount()
{
t=setTimeout("timedCount()",100);
if(vals>0)
{
    displayMsg();
    clearTimeout(t);
}
}
于 2012-05-16T12:43:04.990 回答
5

您可以结合使用onbeforeunloadonunload事件,在前者中设置计时器并在后者中清除它:

var showMsgTimer;

window.onbeforeunload = function(evt) {
    var message = 'Please Stay on this page and we will show you a secret text.';
    showMsgTimer = window.setTimeout(showMessage, 500);

    evt = evt || window.evt;
    evt.returnValue = message;

    return message;
}

window.onunload = function () {
    clearTimeout(showMsgTimer);
}

function showMessage() {
    alert("You've been trolled!");
}

这是有效的,因为onunload当用户选择留在页面上时,该事件永远不会触发。

于 2012-05-16T10:56:01.937 回答
1

请使用这些代码行,它可以正常工作。

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js">
    </script>
    <script type="text/javascript">
    $(function(){
    $(window).bind('beforeunload', function(){
      return 'Your Data will be lost :(';
     });
    });
    </script>
于 2014-07-07T06:55:23.573 回答