我想禁止访问者返回浏览器,我在这里尝试了代码(How to disable back button in browser using javascript)并且运行良好,但我想让somenthing对我的应用程序更有用。我想改变后面的网址。
所以,如果后面的URL是mywebsite.com/admin/add_new_article.php,我想将后面的URL更改为mywebsite.com/admin/index.php
谢谢大家!
答案 0 :(得分:11)
<script type="text/javascript">
history.pushState(null, null, '<?php echo $_SERVER["REQUEST_URI"]; ?>');
window.addEventListener('popstate', function(event) {
window.location.assign("http://www.yoururl.com/");
});
</script>
希望它有所帮助!