如果要模拟某人单击链接,请使用location.href
如果要模拟HTTP重定向,请使用 location.replace
例如:
// similar behavior as an HTTP redirect
window.location.replace("http://stackoverflow.com");
// similar behavior as clicking on a link
window.location.href = "http://stackoverflow.com"