Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
location.href location.replace document.URL
从其他类似的问题可以看出,我们可以整合所有这些可能的方法吗?
var customURL = 'http://www.example.com'; window.location.href = customURL; window.location.assign(customURL); // Current page won't get saved in the history: window.location.replace(customURL); // Gecko only: window.document.location = customURL
也可以看看:
window.location
window.document.location