How to get the browser to navigate to URL in JavaS

2019-01-02 19:12发布

问题:

This question already has an answer here:

  • How do I redirect to another webpage? 58 answers

What is the best (correct, modern, cross-browser, safe) way to get a web browser to navigate to a URL of your choice using JavaScript?

回答1:

This works in all browsers:

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

If you wanted to change the page without it reflecting in the browser back history, you can do:

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


回答2:

Try these:

  1. window.location.href = 'http://www.google.com';
  2. window.location.assign("http://www.w3schools.com");
  3. window.location = 'http://www.google.com';

For more see this link: other ways to reload the page with JavaScript



回答3:

It seems that this is the correct way 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/


标签: