Chrome 中的 onbeforeunload 问题
我已经在切换到其他页面之前实施了未保存的更改警告。所以我需要在页面卸载之前保存当前表单。我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论