开发者

Problem submitting form on window.unload

I am having a problem submitting form on window unload if form information has been updated (album.updated = true):

window.onunload = function(evnt) {
 开发者_C百科 if (album.updated) {
    var save = confirm('Do you want to save changes?');
    if (save) {
      alert('submitting form...');
      document.edit_photos.submit();
    }
  }
}

It alerts "submitting form" but nothing is saved. But when I do a regular submit with a Save button - it saves information. What could be wrong here?


You cannot reliably interact with the server from the unload event.

Sending an AJAX request might be a little more reliable, but should also not be relied on.

Instead, you should handle the onbeforeunload event and return "You have unsaved changes";.
This will instruct the browser to show a confirmation dialog allowing the user to cancel the navigation. (After which he can save manually)


You don't get to do anything much on unload. At one time more was allowed, but bad sites used to trap and confuse the user, so this has been locked down.

The only interaction you can get is through onbeforeunload. And you can't reliably prompt to save here either... you aren't generally allowed to circumvent the navigation by submitting the form directly. You can try posting the save request using XMLHttpRequest, but there is no guarantee it will reach the server before the page navigates away.

So all you can reasonably do is alert the user to the unsaved data, prompting them to cancel the navigation and save the data themselves:

window.onbeforeunload= function() {
    if (album.updated)
        return (
            'You have unsaved changes to this album. Are you sure you wish '+
            'to leave without saving?'
        );
};
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜