文案参考https://www.zhihu.com/question/40511430
https://blog.csdn.net/vM199zkg3Y7150u5/article/details/79554296
其中遇到了苹果端无法给绑定元素添加事件的小坑,解决办法
//给事件元素添加
cursor:pointer;
//防止点击元素出现闪烁背景
-webkit-tap-highlight-color:transparent;
$(function(){
pushHistory();
window.addEventListener("popstate", function(e) {
alert("我监听到了浏览器的返回按钮事件啦");//根据自己的需求实现自己的功能
// closeWindow()
$('body').append('<div id="window-close" style="width:100vw;height:100vh;background:rgba(0,0,0,.5);position:absolute;top:0;left:0;z-index="9999999;"><div style="background:#fff;cursor:pointer;" class="sure" style="width:50vw;margin:0 auto;">确定</div><div class="cancel" style="width:50vw;margin:0 auto;cursor:pointer;-webkit-tap-highlight-color:transparent;">取消</div></div>')
}, false);
$('body').on('click','#window-close .sure',function(){
closeWindow()
})
$('body').on('click','#window-close .cancel',function(){
$(this).parents('#window-close').remove();
return false;
})
function closeWindow(){
var ua = navigator.userAgent.toLowerCase();
if(ua.match(/MicroMessenger/i)=="micromessenger") {
WeixinJSBridge.call('closeWindow'); //微信
} else if(ua.indexOf("alipay")!=-1){
AlipayJSBridge.call('closeWebview'); //支付宝
}else if(ua.indexOf("baidu")!=-1){
BLightApp.closeWindow(); //百度
}else{
window.close(); //普通浏览器
}
}
function pushHistory() {
var state = {
title: "title",
url: "#"
};
window.history.pushState({page:1}, "title", '#'+this.$route.path+"?page="+this.$route.name);
}
});