Blogger Information
Blog 20
fans 0
comment 0
visits 33324
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
禁止后退到后台系统页面
陈文鹏的博客
Original
983 people have browsed it

<script language="JavaScript"> 

history.pushState(null, null, document.URL.split("?")[0] + "?rand=" + Math.random());

console.log('刷新');

window.addEventListener('popstate', function(event) {

    console.log('回退');

    // 点击回退时再向历史记录插入一条,以便阻止下一次点击回退

    history.pushState(null, null, document.URL.split("?")[0] + "?rand=" + Math.random());

});

</script>  


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post