在IE中自定义窗口关闭事件消息?
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果在关闭事件中提供字符串,则无法修改打开的对话框。
该对话框由浏览器处理,无法自定义。
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.