vue 移动端禁用安卓手机返回键
Posted 老虎念大悲咒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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);
// });
以上是关于vue 移动端禁用安卓手机返回键的主要内容,如果未能解决你的问题,请参考以下文章
安卓手机怎么移动软件图标?为啥自动移到桌面啊怎么移动到上一页?