到某个指定的页面不可以后退
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>
以上是关于到某个指定的页面不可以后退的主要内容,如果未能解决你的问题,请参考以下文章
如何使用UWP NavigationView后退按钮而不重新加载页面