解决history.back()在PC端生效而在移动端不生效的问题

352 阅读1分钟

在pc端使用history.back()返回上层页面是没有问题,但是在移动端使用history.back()返回上层页面不生效,结合document.referrer和****window.location.href来实现返回上层页面的跳转

1,先使用document.referrer获取上一层页面路径

2,再使用window.location.href进行跳转

window.location.href=window.document.referrer