web消除用户的后退操作

来源:互联网 发布:同行业数据查询 编辑:程序博客网 时间:2024/05/21 22:53

<script language="javascript">       
 //防止页面后退        
history.pushState(null, null, document.URL);        
window.addEventListener('popstate', function () { 
history.pushState(null, null, document.URL);        
});    
</script>

原创粉丝点击