如何询问一个人是否要关闭窗户?

时间:2012-10-22 07:12:39

标签: php javascript html popup

  

可能重复:
  Javascript To Get An Alert When Closing The Browser Window

我有一个合理的理由要求这个,我有一个管理大型数据库的Web应用程序,用于修改查找表的页面会弹出单独的窗口。我希望能够提醒用户他们对表单所做的更改是否已保存到数据库中,并为他们提供了选项,即使他们单击“X”关闭窗口也是如此。这可能吗?

2 个答案:

答案 0 :(得分:2)

这就是我的工作

window.onbeforeunload = function (e) {
  var e = e || window.event;
  if (allowNavigationsAwayFromPage != true)
      {
      // For IE and Firefox
      if (e) {
        e.returnValue = 'Are You Sure? Some operation is still going on';
      }

      // For Safari
      return 'Are You Sure? Some operation is still going on';

      }
};

allowNavigationsAwayFromPage现在是一个变量。但我通常有一个功能来检查这个。

答案 1 :(得分:0)

最简单的方法是:

window.onbeforeunload = function(e)
{
    e = e || window.event;
    if (confirm('Are you sure?\nNot everything has been saved yet'))
    {
        return e;//return event object, unaltered... page will unload
    }
    if (e.preventDefault)
    {
        e.preventDefault();
        e.stopPropagation();
    }
    else
    {
        e.returnValue = false;
        e.cancelBubble = true;
    }
    return false;
};