给浏览器添加历史记录,并监听是否进行回退操作
returnHistory:function returnHistory(){
var state = {
title: "title",
url: "#"
};
window.addEventListener("popstate", function(e) {
if( window.confirm('你确定要离开网站吗?') ){
WeixinJSBridge.call("closeWindow");
}
});
window.history.pushState(state, "title", "#");
}
判断是否在ios和Android中
if (navigator.userAgent.match(/(iPhone|iPod|iPad);?/i) || navigator.userAgent.match(/android/i)) {}
版权声明:本文为weixin_42283981原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。