vue 移动端禁用安卓手机返回键

眼前多少难甘事,自古男儿当自强。这篇文章主要讲述vue 移动端禁用安卓手机返回键相关的知识,希望能为你提供帮助。
【vue 移动端禁用安卓手机返回键】 //禁止手机返回键    下面这段代码直接复制在index.html中,可以生效
//$(document).ready(function() {
if (window.history & & window.history.pushState) {
window.addEventListener(‘popstate‘,function () {
window.history.pushState(‘forward‘, null, ‘#‘);
window.history.forward(1);
})
}
window.history.pushState(‘forward‘, null, ‘#‘); //在IE中必须得有这两行
window.history.forward(1);
//});











    推荐阅读