How do I redirect with JavaScript?

This question already has an answer here:

  • How do I redirect to another webpage? 67 answers

  • 要重定向到另一个页面,您可以使用:

    window.location = "http://www.yoururl.com";
    

    window.location.replace('http://sidanmor.com');
    

    It's better than using window.location.href = 'http://sidanmor.com';

    Using replace() is better because it does not keep the originating page in the session history, meaning the user won't get stuck in a never-ending back-button fiasco.

    If you want to simulate someone clicking on a link, use window.location.href

    If you want to simulate an HTTP redirect, use window.location.replace

    For example:

    // similar behavior as an HTTP redirect
    window.location.replace("http://sidanmor.com");
    
    // similar behavior as clicking on a link
    window.location.href = "http://sidanmor.com";
    

    Taken from here: How to redirect to another page in jQuery?


    You can't redirect to a function. What you can do is pass some flag on the URL when redirecting, then check that flag in the server side code and if raised, execute the function.

    For example:

    document.location = "MyPage.php?action=DoThis";
    

    Then in your PHP code check for "action" in the query string and if equal to "DoThis" execute whatever function you need.

    链接地址: http://www.djcxy.com/p/894.html

    上一篇: 将自定义URL协议映射到HTTP(使用NSURLProtocol?)

    下一篇: 如何使用JavaScript重定向?