1、history.go()最常用的一种方法,可以返回、前进任意一步的页面、回到上一页// 回到上一页 window.history.go(-1); // 回到下一页 window.history.g
1、history.go()
最常用的一种方法,可以返回、前进任意一步的页面、回到上一页
// 回到上一页 window.history.go(-1); // 回到下一页 window.history.go(1); // 回到任意一页
widnow.history.go(+前进几页)
2、history.back()
back() 方法可加载历史列表中的前一个 URL(如果存在)。
调用该方法的效果等价于点击后退按钮或调用 history.go(-1)。
// 回到上一页 history.back()
3、document.referrer
支持新窗口返回上一页
// new page // 获取上一页的url const prevPageUrl = document.referrer; // 跳转上一页 document.location,href = prevPageUrl;
暂无管理员
粉丝
0
关注
0
收藏
0