Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
473 views
in Technique[技术] by (71.8m points)

javascript - 如何让浏览器导航到JavaScript中的URL [重复](How to get the browser to navigate to URL in JavaScript [duplicate])

This question already has an answer here:

(这个问题在这里已有答案:)

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?

(使用JavaScript让Web浏览器导航到您选择的URL的最佳(正确,现代,跨浏览器,安全)方法是什么?)

  ask by jjujuma translate from so

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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('...');

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...