Chrome 中的 onbeforeunload 问题

发布于 2024-11-05 22:38:19 字数 412 浏览 0 评论 0原文

我已经在切换到其他页面之前实施了未保存的更改警告。所以我需要在页面卸载之前保存当前表单。我使用 onbeforeunload 事件触发这些函数。

if(confirm(confirm_msg)) {
    save_data_using_ajax_call(url)
}

我也尝试了

if(confirm(confirm_msg)) {
    document.form_name.submit();
    return 'changes saved';
}

第一种方法在 Firefox 中工作,但在 chrome 中不行。在 IE8 中,它会在表单保存之前返回。第二种方法在 Chrome 中不起作用。但适用于 Firefox 和 IE。谁能告诉我一个一致的方法?

I have implemented unsaved changes warning before tab out to other page. So I need to save the current form before the page unload. I trigger these functions using onbeforeunload event.

if(confirm(confirm_msg)) {
    save_data_using_ajax_call(url)
}

also I tried

if(confirm(confirm_msg)) {
    document.form_name.submit();
    return 'changes saved';
}

First method working in Firefox, But not in chrome. In IE8 it get returns before the form has saved. Second method not working in chrome. but works in firefox and IE. Can anyone tell me a consistent way of approach?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文