如何让浏览器在JavaScript中导航到URL

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

  • 我如何重定向到另一个网页? 67个答案

  • 这适用于所有浏览器:

    window.location.href = '...';
    

    如果您想更改页面而不反映浏览器的历史记录,则可以执行以下操作:

    window.location.replace('...');
    

    试试这些:

  • window.location.href = 'http://www.google.com';
  • window.location.assign("http://www.w3schools.com");
  • window.location = 'http://www.google.com';
  • 有关更多信息,请参阅此链接:使用JavaScript重新加载页面的其他方法


    这似乎是正确的方式window.location.assign("http://www.mozilla.org");

  • https://developer.mozilla.org/en-US/docs/Web/API/Window/location
  • https://www.w3schools.com/js/js_window_location.asp
  • https://jstricks.com/javascript-redirect-page-redirection/
  • 链接地址: http://www.djcxy.com/p/1119.html

    上一篇: How to get the browser to navigate to URL in JavaScript

    下一篇: What is the maximum length of a valid email address?