如何去使用jQuery的URL?

这个问题在这里已经有了答案:

  • 我如何重定向到另一个网页? 67个答案
  • 如何让浏览器在JavaScript中导航到URL [复制] 3个答案
  • 我们如何在不重新加载页面的情况下使用javascript / jQuery更新URL或查询字符串? 10个答案

  • //As an HTTP redirect (back button will not work )
    window.location.replace("http://www.google.com");
    
    //like if you click on a link (it will be saved in the session history, 
    //so the back button will work as expected)
    window.location.href = "http://www.google.com";
    

    为什么不使用?

    location.href='http://www.example.com';
    

    <!DOCTYPE html>
    <html>
    
    <head>
      <script>
        function goToURL() {
          location.href = 'http://google.it';
    
        }
      </script>
    </head>
    
    <body>
      <a href="javascript:void(0)" onclick="goToURL(); return false;">Go To URL</a>
    </body>
    
    </html>

    window.location就是你需要的。 你可以做的其他事情是创建锚点元素并模拟点击它

    $("<a href='your url'></a>").click(); 
    
    链接地址: http://www.djcxy.com/p/1935.html

    上一篇: How to go to a URL using jQuery?

    下一篇: SOAP vs REST (differences)