2020
10-10
10-10
Vue 禁用浏览器的前进后退操作
一.禁用前进后退功能在开发vue应用中,如何禁用浏览器的前进后退功能呢?网上搜到的答案基本如下:history.pushState(null,null,document.URL)window.addEventListener('popstate',function(){history.pushState(null,null,document.URL)})但应该放在哪儿?经过尝试,我是如此写的:main.js中,增加popstate监听window.addEventListener('popstate',function(){history.pushState(null,null,document.URL)})router的in...
继续阅读 >