码迷,mamicode.com
首页 > Web开发 > 详细

JS-在本页面禁止页面返回

时间:2019-10-02 13:02:53      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:dev   pst   代码   history   UNC   stat   java   不用   lis   

这个问题是最近遇到的

解决方案我百度的并测试有效

// 如果你希望用户不用有返回功能 可缩写如下 或使用location.replace(‘url‘)跳转链接

history.pushState(null, null, document.URL);
window.addEventListener(‘popstate‘, function () {
	history.pushState(null, null, document.URL);
});

 

注:上面的代码是禁止页面返回,其中document.URL可以指定页面的链接来跳转  

 

JS-在本页面禁止页面返回

标签:dev   pst   代码   history   UNC   stat   java   不用   lis   

原文地址:https://www.cnblogs.com/liuqingxia/p/11616981.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!