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

时间:2023-03-09 00:04:27
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>

相关文章