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

javascript - Prevent user from accidentally navigating away - Stack Overflow

programmeradmin2浏览0评论

My problem is a bit more plex than using the following simple JavaScript code:

window.onbeforeunload = function (e) {      
  return 'Are You Sure?';
};

On an e-merce web page I would like to remind the user that he has items in the shopping cart so that he can change his mind before

  1. closing the browser tab/window
  2. navigating to another domain

The JavaScript method above does not solve my problem because it is evoked even when the user navigates within the domain.

Short:

  1. User tries to close window -> Show dialog
  2. User changes www.mydomain/shoppingcart url to www.google in the browser's address bar -> Show dialog
  3. User navigates to www.mydomain/checkout with the checkout button or presses the back button in the browser -> Do NOT show the dialog

My problem is a bit more plex than using the following simple JavaScript code:

window.onbeforeunload = function (e) {      
  return 'Are You Sure?';
};

On an e-merce web page I would like to remind the user that he has items in the shopping cart so that he can change his mind before

  1. closing the browser tab/window
  2. navigating to another domain

The JavaScript method above does not solve my problem because it is evoked even when the user navigates within the domain.

Short:

  1. User tries to close window -> Show dialog
  2. User changes www.mydomain./shoppingcart url to www.google. in the browser's address bar -> Show dialog
  3. User navigates to www.mydomain./checkout with the checkout button or presses the back button in the browser -> Do NOT show the dialog
Share Improve this question edited Dec 30, 2022 at 12:08 Brian Tompsett - 汤莱恩 5,89372 gold badges61 silver badges133 bronze badges asked Jun 23, 2009 at 10:38 GermstormGermstorm 9,84914 gold badges69 silver badges83 bronze badges
Add a ment  | 

6 Answers 6

Reset to default 5

It's not possible to tell if a user is pressing the back-button or closing the tab and you don't have access to their intended location.

It is possible to stop the dialog from showing if an internal link is clicked though:

(function(){

    function isExternal( href ) {
        return RegExp('https?:\\/\\/(?!' + window.location.hostname + ')').test(href);
    }

    var returnValue = 'Are you sure?';

    document.documentElement.onclick = function(e){
        var target = e ? e.target : window.event.srcElement;
        if (target.href && !isExternal(target.href)) {
            returnValue = undefined;
        }
    };

    window.onbeforeunload = function(){
        return returnValue;
    };

})();

Sorry there's no technical solution to your "problem."

It's not an accident when a user decides to leave your site, i.e. by typing a new URL, so stopping them to say "Hey, you haven't checked out yet" is kind of pointless.

I would suggest letting the visitor leave your website freely and simply remembering their information (DB, Sessions vars, etc). In terms of eCommerce that is the polite way of keeping customers.

If someone wants to leave your website, they will. Double-checking beforehand will likely only irritate the customer and lessen your chance of their return.

Since the beforeUnload-event object does NOT contain the location the user is trying to go to, one "hack" to do this would be to add click listeners to all links on your site, and disable the unload-listener in that handler. It's not very pretty, and it will probably not work if the user navigates with the keyboard, but it's my best guess at the moment.

It sounds like you'd need to use an onbeforeunload and then modify all your internal links to disable it. Probably the thing to do for the latter would be a jQuery event; making the actual hrefs run through JS would be terrible, not least because it'd defeat search engine crawling.

I was looking into this too, reason being we have some really stupid end users who fill out a whole web form then don't press the save button.

I found this is u r interested, seems like a good solution: https://web.archive/web/20211028110528/http://www.4guysfromrolla./demos/OnBeforeUnloadDemo1.htm

发布评论

评论列表(0)

  1. 暂无评论