眼前多少难甘事,自古男儿当自强。这篇文章主要讲述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);
//});
推荐阅读
- spring boot项目application.properties多环境配置文件jar包外部配置文件
- Android app 性能优化的思考--性能卡顿不好的原因在哪()
- android studio InnerClass annotations are missing corresponding EnclosingMember annotations. Such In
- 解压Assets.car获取App中的图片资源
- 如何在VMware里安装android-x86
- [???][Dapper]??????????????????
- appium学习记录2
- Androidregister编译报错
- Android开发之多Fragment切换优化