假设你有一个网站example.com。如果您要将example.com键入搜索栏,您将进入该站点的索引页面。但是,此页面在技术上与example.com/index.html不同。
var currentPage = window.location.href
我在一些条件语句中使用上面的JS方法来确定当前页面并相应地调整格式,但由于example.com和example.com/index.html之间的差异,它无法正常工作,所以我将如何执行这种重定向?
答案 0 :(得分:1)
// 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";