admin管理员组文章数量:1414908
I have a scenario, I have to save the changes when user clicks yes on window.onbeforeunload
for that I need to submit the form and nothing should be happen when selected no.
Any help is greatly appreciated.
I have tried this:
window.onbeforeunload= function(){
var r = confirm("Are you sure you want to leave this page?");
if (r == true) {
readForm.action = '/SREPS/read.do' ;
readForm.submit();
}else{
return false;
}
}
It did not worked 100% when ever we hit Cancel during window.confirm
another dialog appears saying that message from web page false asking for confirmation leave this page and stay on this page. In this case if the user selects leave this page. I am not able to submit the form.
I have a scenario, I have to save the changes when user clicks yes on window.onbeforeunload
for that I need to submit the form and nothing should be happen when selected no.
Any help is greatly appreciated.
I have tried this:
window.onbeforeunload= function(){
var r = confirm("Are you sure you want to leave this page?");
if (r == true) {
readForm.action = '/SREPS/read.do' ;
readForm.submit();
}else{
return false;
}
}
It did not worked 100% when ever we hit Cancel during window.confirm
another dialog appears saying that message from web page false asking for confirmation leave this page and stay on this page. In this case if the user selects leave this page. I am not able to submit the form.
- 1 possible duplicate of How to capture browser close event and make a request to web service method on that event through javascript – Denys Séguret Commented May 7, 2014 at 15:57
- I have posted my answer below – Harish Commented May 7, 2014 at 16:36
- @Harish: Don't post it as an answer if it does not answer/solve the question. – gen_Eric Commented May 7, 2014 at 20:04
1 Answer
Reset to default 6You cannot use your own dialog in onbeforeunload
. The only thing you can do is return a string to be displayed (on some browsers). You cannot stop the browser from leaving, only the user can control that.
What you can do is the following:
window.onbeforeunload = function(){
return 'Are you sure you want to leave this page?';
};
This will ask the user if they want to leave or not. Then you can use the onunload
event to run a function when they leave. From there, you can make a "synchronous" AJAX request to submit the form.
window.onunload = function(){
var request = new XMLHttpRequest();
request.open('POST', '/SREPS/read.do', false);
request.setRequestHeader('Content-type', 'application/x-www-form-urlencoded');
request.send(new FormData(readForm));
};
If you are using jQuery, you can do:
window.onunload = function(){
$.ajax({
url: '/SREPS/read.do',
type: 'post',
async: false,
data: $(readForm).serialize()
});
};
本文标签: javascriptCapture the result of windowonbeforeunloadStack Overflow
版权声明:本文标题:javascript - Capture the result of window.onbeforeunload - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1745159657a2645382.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论