我有一个页面A,有很多入口能访问到这个页面,我现在想要实现,无论从哪个入口访问到A页面,浏览器返回都定位到一个制定的页面B,这要怎么写这个逻辑呀
2 回答
守着一只汪
TA贡献1872条经验 获得超3个赞
试试这个
A页面中如下代码
<script type="text/javascript">
window.onpopstate = function (event) {
location.href = "B页面地址";//点击后退按钮,会转向到这个地址
};
history.pushState({}, null, 'back.html');//地址栏中域名后 / 之后的uri会显示为back.html,随意写,无实际意义
</script>
添加回答
举报
0/150
提交
取消