因为H5不支持,所以就考虑原生的监听.
监听到浏览器默认的返回时候往history中插入新数据
window.history.pushState(null, null, "#");
window.addEventListener("popstate", function(){
//可以在这里做想做的事
}, false)
因为H5不支持,所以就考虑原生的监听.
监听到浏览器默认的返回时候往history中插入新数据
window.history.pushState(null, null, "#");
window.addEventListener("popstate", function(){
//可以在这里做想做的事
}, false)