js修改物理返回键功能
Posted me春天
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js修改物理返回键功能相关的知识,希望对你有一定的参考价值。
preventBack: function(theurl){
var pushState = window.history.pushState;
//点击物理返回键时,退出到跳转定义首页
if(pushState){
window.history.pushState({a: Math.random()},‘‘, location.href);
window.addEventListener(‘popstate‘, function(){
var type = typeof(theurl);
type == ‘function‘ ? theurl() : window.location.href=theurl;
}, !1);
}
}
但是得注意一些ios系统下在APP内嵌的H5网页会出现不明BUG(如链接跳转直接跳了theurl)
以上是关于js修改物理返回键功能的主要内容,如果未能解决你的问题,请参考以下文章