微信 h5 页面 点击下方返回箭头 关闭当前打开系统

在页面加载完成后 
pushHistory(); window.addEventListener(
"popstate", function (e) { if (navigator.userAgent.indexOf('AlipayClient') > 0 && navigator.userAgent.indexOf('Android') > 0) { return; } pushHistory(); WeixinJSBridge.call('closeWindow'); }, false); function pushHistory() { var state = { title: "", url: "#" }; window.history.pushState(state, "", "#"); }

原文地址:https://www.cnblogs.com/ouyangxiaoyao/p/13820451.html