在页面加载完成后
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, "", "#"); }