在IE中自定义窗口关闭事件消息?

发布于 2024-12-10 14:47:27 字数 401 浏览 0 评论 0原文

我正在使用 GWT。窗口关闭时,我们会收到浏览器提供的消息“您确定要离开此页面吗?”。我想用我自己的消息替换该消息。请帮我。下面是我的代码。

Window.addWindowClosingHandler(new Window.ClosingHandler() {
            @Override
            public void onWindowClosing(final Window.ClosingEvent closingEvent) {
                                                        closingEvent.setMessage("some message.");
                    }

        });

i am using GWT. on window close we get browser provided message" Are you sure you want to navigate away from this page?". i want to replace the message with my own message. please help me. below is my code.

Window.addWindowClosingHandler(new Window.ClosingHandler() {
            @Override
            public void onWindowClosing(final Window.ClosingEvent closingEvent) {
                                                        closingEvent.setMessage("some message.");
                    }

        });

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

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

发布评论

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

评论(1

冧九 2024-12-17 14:47:27

如果在关闭事件中提供字符串,则无法修改打开的对话框。

该对话框由浏览器处理,无法自定义。

you can not modify the dialog that is opened if you provide a string in the closing event.

The dialog is handled by the browser and can not be customized.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文