这里汇总使用JS跳转页面的几种重要方法。也包含了重新定向redirect的方法,注意跳转和重新定向有着本质的区别,虽然我们看到的结果是一样的,新的链接在当前页面打开。(如果你还是不了解请自行google)
1、location.href 跳转
window.location.href="http://lebang2020.cn" //等价于<a href="lebang2020.cn" target="_self">乐帮网</a>
2、location.replace 重定向
window.location.replace("http://lebang2020.cn");
3、history.back 回退历史
window.history.back(-1);
此次没有把window.open算在内,这个属于新打开窗口和跳转没有关系。
相关文章:
原创链接,禁止转载!