ios微信页面回退不刷新的问题

pushHistory();

window.addEventListener("popstate",function (e) {
   
},false);

function pushHistory() {
    var state = {
        title: "title",
        url: "#"
    };
    window.history.pushState(state, "title", "#");
}
 
 

只是为了记录给自己看的。

猜你喜欢

转载自blog.csdn.net/xjiayi/article/details/79288009