到某个指定的页面不可以后退

Posted wuli梦梦

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了到某个指定的页面不可以后退相关的知识,希望对你有一定的参考价值。

<script type="text/javascript">
window.onload=function(){
if (window.history && window.history.pushState) {
window.onpopstate=function(){
window.history.pushState(‘forward‘, null, ‘#‘);
window.history.forward(1);
alert("请先完成注册,再进行其他操作!")
}
window.history.pushState(‘forward‘, null, ‘#‘);
window.history.forward(1); 
}
} 
</script>

以上是关于到某个指定的页面不可以后退的主要内容,如果未能解决你的问题,请参考以下文章

javascript限制浏览器后退

js如何使浏览器的后退和前进功能失效(IE FF 谷歌)

如何使用UWP NavigationView后退按钮而不重新加载页面

jquery mobile+html5 写的页面 如何禁用手机后退按钮。或者说如何禁用页面后退。

删除某些页面上的默认后退箭头

Vue 实现前进刷新,后退不刷新的效果