Using [removed] How to create a 'Go Back' link that takes the user to a link if there's no history for the tab or window?

前端 未结 12 1845
星月不相逢
星月不相逢 2020-12-12 21:36

EDIT-2: None of the answers seem to work. Not even the one I previously marked as the answer of this question. Any help is appreciated. Thanks.

相关标签:
12条回答
  • 2020-12-12 22:09
    echo "<p><a href=\"javascript:history.go(-1)\" title=\"Return to previous page\">&laquo;Go back</a></p>";
    

    Will go back one page.

    echo "<p><a href=\"javascript:history.go(-2)\" title=\"Return to previous page\">&laquo;Go back</a></p>";
    

    Will go back two pages.

    0 讨论(0)
  • 2020-12-12 22:11

    The reason on using the return:false; is well explained on this other question.

    For the other issue, you can check for the referrer to see if it is empty:

        function backAway(){
            if (document.referrer == "") { //alternatively, window.history.length == 0
                window.location = "http://www.example.com";
            } else {
                history.back();
            }
        }
    
    <a href="#" onClick="backAway()">Back Button Here.</a>
    
    0 讨论(0)
  • 2020-12-12 22:15

    The following code did the trick for me.

    html:

    <div class="back" onclick="goBackOrGoHome()">
      Back
    </div>
    

    js:

    home_url = [YOUR BASE URL];
    
    pathArray = document.referrer.split( '/' );
    protocol = pathArray[0];
    host = pathArray[2];
    
    url_before = protocol + '//' + host;
    
    url_now = window.location.protocol + "//" + window.location.host;
    
    
    function goBackOrGoHome(){
      if ( url_before == url_now) {
        window.history.back();    
      }else{
        window.location = home_url;
      };
    }
    

    So, you use document.referrer to set the domain of the page you come from. Then you compare that with your current url using window.location.

    If they are from the same domain, it means you are coming from your own site and you send them window.history.back(). If they are not the same, you are coming from somewhere else and you should redirect home or do whatever you like.

    0 讨论(0)
  • 2020-12-12 22:16

    You cannot check window.history.length as it contains the amount of pages in you visited in total in a given session:

    window.history.length (Integer)

    Read-only. Returns the number of elements in the session history, including the currently loaded page. For example, for a page loaded in a new tab this property returns 1. Cite 1

    Lets say a user visits your page, clicks on some links and goes back:

    www.mysite.com/index.html <-- first page and now current page                  <----+
    www.mysite.com/about.html                                                           |
    www.mysite.com/about.html#privacy                                                   | 
    www.mysite.com/terms.html <-- user uses backbutton or your provided solution to go back
    

    Now window.history.length is 4. You cannot traverse through the history items due to security reasons. Otherwise on could could read the user's history and get his online banking session id or other sensitive information.

    You can set a timeout, that will enable you to act if the previous page isn't loaded in a given time. However, if the user has a slow Internet connection and the timeout is to short, this method will redirect him to your default location all the time:

    window.goBack = function (e){
        var defaultLocation = "http://www.mysite.com";
        var oldHash = window.location.hash;
    
        history.back(); // Try to go back
    
        var newHash = window.location.hash;
    
        /* If the previous page hasn't been loaded in a given time (in this case
        * 1000ms) the user is redirected to the default location given above.
        * This enables you to redirect the user to another page.
        *
        * However, you should check whether there was a referrer to the current
        * site. This is a good indicator for a previous entry in the history
        * session.
        *
        * Also you should check whether the old location differs only in the hash,
        * e.g. /index.html#top --> /index.html# shouldn't redirect to the default
        * location.
        */
    
        if(
            newHash === oldHash &&
            (typeof(document.referrer) !== "string" || document.referrer  === "")
        ){
            window.setTimeout(function(){
                // redirect to default location
                window.location.href = defaultLocation;
            },1000); // set timeout in ms
        }
        if(e){
            if(e.preventDefault)
                e.preventDefault();
            if(e.preventPropagation)
                e.preventPropagation();
        }
        return false; // stop event propagation and browser default event
    }
    
    <span class="goback" onclick="goBack();">Go back!</span>
    

    Note that typeof(document.referrer) !== "string" is important, as browser vendors can disable the referrer due to security reasons (session hashes, custom GET URLs). But if we detect a referrer and it's empty, it's probaly save to say that there's no previous page (see note below). Still there could be some strange browser quirk going on, so it's safer to use the timeout than to use a simple redirection.

    EDIT: Don't use <a href='#'>...</a>, as this will add another entry to the session history. It's better to use a <span> or some other element. Note that typeof document.referrer is always "string" and not empty if your page is inside of a (i)frame.

    See also:

    • W3C: HTML5: 5.4.2 The History interface
    0 讨论(0)
  • 2020-12-12 22:17

    You should use window variable - window.referrer. This variable contains the last page the user visited if they got to the current page by clicking a link For example:

      function goBack() {
        if(document.referrer) {
          window.location.href = document.referrer;
    
          return;
        } 
    
        window.location.pathname = '/';
      }
    

    This code redirect user to previous page if this is exist and redirect user to homepage if there isn't previous url

    0 讨论(0)
  • 2020-12-12 22:18

    both would work the same, its just two different methods to call the same function. Try the following:

    <a href="javascript:history.back();">[Go Back]</a>
    
    0 讨论(0)
提交回复
热议问题