最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

Javascript: Check if the user is navigating away with a form submit or a simple link click - Stack Overflow

programmeradmin2浏览0评论

I need to do remind the users something when they are leaving the page, and that can be handled with the window.onUnload event. But I also need to check if the user is navigating away by submitting the form on the page, or by clicking the navigation links. I could use the form's onSubmit event to set a flag, and then check against that flag in the window.onUnload event, but I am not sure which one fires first.

any ideas ?

I need to do remind the users something when they are leaving the page, and that can be handled with the window.onUnload event. But I also need to check if the user is navigating away by submitting the form on the page, or by clicking the navigation links. I could use the form's onSubmit event to set a flag, and then check against that flag in the window.onUnload event, but I am not sure which one fires first.

any ideas ?

Share Improve this question asked May 8, 2009 at 13:26 disc0dancerdisc0dancer 9,37511 gold badges40 silver badges46 bronze badges 1
  • 3 Why don't you do a test and see what fires first? – Svante Svenson Commented May 8, 2009 at 13:37
Add a ment  | 

3 Answers 3

Reset to default 5

You actually want window.onbeforeunload

window.onbeforeunload = function (e) {
  var e = e || window.event;

  // For IE and Firefox
  if (e) {
    e.returnValue = 'Are You Sure?';
  }

  // For Safari
  return 'Are You Sure?';
};

It turns out that the form.onSubmit event fires first so i can use a flag. I have checked this in Firefox and Safari only.

var isRefresh = true;
window.onunload = function () {
    alert('the page was ' + (isRefresh == false ? 'NOT ' : '') + 'refreshed');
}
$('a').live('click', function () { isRefresh = false; alert('a link was clicked'); });
$('form').bind('submit', function () { isRefresh = false; alert('form was submitted'); });

Based on How to capture the browser window close event?. I added the refresh logic.

发布评论

评论列表(0)

  1. 暂无评论