阅读量:0
JavaScript返回上一页的方法有以下几种:
- 使用浏览器的history对象的go()方法,参数为-1,表示返回上一页:
window.history.go(-1);
- 使用浏览器的history对象的back()方法,也可以返回上一页:
window.history.back();
- 使用浏览器的location对象的href属性,设置为document.referrer,表示返回上一页的URL:
window.location.href = document.referrer;
这些方法都可以用来返回到上一页,具体使用哪种方法取决于具体的需求和场景。