如何调用函数返回true

时间:2015-10-27 13:06:55

标签: javascript

我有以下代码,它们会返回重新加载页面的弹出消息。 当用户点击"重新加载页面"我必须执行一项功能。当用户点击" Not Reload"。

时,并保持在同一页面上
window.onbeforeunload = function()
{
    return "";
};

我该怎么做?

1 个答案:

答案 0 :(得分:0)

试试这个:

<script>
  var myEvent = window.attachEvent || window.addEventListener;
  var chkevent = window.attachEvent ? 'onbeforeunload' : 'beforeunload'; /// make IE7, IE8 compatable

  myEvent(chkevent, function (e) { // For >=IE7, Chrome, Firefox
    var confirmationMessage = ' '; // a space
    (e || window.event).returnValue = confirmationMessage;
    return confirmationMessage;
  });
</script>

this文章中摘录。这是他们的demo