window.unload上没有发生警报框

时间:2014-04-17 07:58:05

标签: javascript jquery html

当用户离开页面时,为什么以下代码不会导致警告框?我在Chrome中测试过并且没有出现警告框(并且它们没有被阻止)。我也在FireFox和Internet Explorer中尝试过它。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <title>Test 1</title>
</head>
<body>
<a href="http://www.google.com">Google</a>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script>
    $(window).unload(function() {
        alert("bye");
    });
</script>
</body>
</html>

根据this tutorial它应该有用。

2 个答案:

答案 0 :(得分:0)

尝试使用:

$(window).on('beforeunload', function() {
   return 'Bye';
});

或尝试使用纯JavaScript:

window.onbeforeunload = function(){
   return 'bye';
}

Chrome会阻止警告onunload。

答案 1 :(得分:-1)

在html脚本中

      window.beforeonunload = function(){
      return 'bye';
       }

使用上面的代码你可能得到答案