标签:rand event var tor ntb 物理 history ops window
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)
标签:rand event var tor ntb 物理 history ops window
原文地址:http://www.cnblogs.com/lichuntian/p/6387390.html