js禁止浏览器页面后退功能

js禁止浏览器页面后退功能:

<script>
$(function(){
if(window.location.href.indexOf("/login") > -) {
//防止页面后退
history.pushState(null, null, document.URL);
window.addEventListener('popstate', function () {
history.pushState(null, null, document.URL);
});
}
});
</script>
上一篇:python(1)


下一篇:一个比Spring Boot快44倍的Java框架!