IOS微信端返回重写

来源:互联网 发布:源码包安装apache 编辑:程序博客网 时间:2024/06/15 06:06
function pushHistory() {var state = {title : "title",url : "#"};window.history.pushState(state, state.title, state.url);//监控IOS微信端返回事件, 返回下单页面做刷新 ,if ($.isIOS() && $.isWechat()) {setTimeout(function() {window.addEventListener("popstate", function(e) {var returnUrl = sessionStorage.getItem('orderConfirmView-refresh-url');sessionStorage.removeItem('orderConfirmView-refresh-url');window.location.href = returnUrl;}, false);}, 500); //延迟0.5秒执行 }}

原创粉丝点击