uniapp-h5监听安卓实体键返回

image.png

因为H5不支持,所以就考虑原生的监听.
监听到浏览器默认的返回时候往history中插入新数据

window.history.pushState(null, null, "#");
window.addEventListener("popstate", function(){
      //可以在这里做想做的事
}, false)

你可能感兴趣的:(uniapp-h5监听安卓实体键返回)