如何在页面关闭之前发出 JavaScript 警报?

发布于 2024-08-29 04:15:20 字数 105 浏览 4 评论 0原文

我想编写 JavaScript 代码,当我关闭当前 HTML 页面时,该代码会显示一条警告消息,例如“您确定吗?”

我想从警报消息中获取按钮的值,无论用户按下什么按钮。我该怎么做?

I want to write JavaScript code that would, when I close the current HTML page, display an alert message like "Are you sure?"

I want to take the value of the button from the alert message, whatever the user pressed. How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

笑忘罢 2024-09-05 04:15:20

据我所知,beforeunload 在 Opera 中从未被触发。

为了支持该浏览器,您可能必须自己构建一些页面离开检测引擎(观察链接等)。

As far as I know, beforeunload is never fired in Opera.

For supporting that browser, you probably have to build some page-leaving-detection engine yourself (observing links etc).

天生の放荡 2024-09-05 04:15:20

您可以这样做:

function close_window() {
  if (confirm("Close Window?")) {
    close();
  }
}

查看这篇文章:如何关闭当前选项卡在浏览器窗口中?

You could do:

function close_window() {
  if (confirm("Close Window?")) {
    close();
  }
}

Check out this post: How to close current tab in a browser window?

っ左 2024-09-05 04:15:20
$(document).ready(function(){
    $(window).bind("beforeunload", function(e) {
            return "alert message";
    });
});
$(document).ready(function(){
    $(window).bind("beforeunload", function(e) {
            return "alert message";
    });
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文