利用popstate 禁止返回上一页

能用到这个需求的页面大部分估计都是黑五或黄赌

history.pushState(null, null, document.URL);
window.addEventListener("popstate",function(e) {  
  console.log(e);
  history.pushState(null, null, document.URL);
}, false);

 

posted @ 2019-08-08 11:15  黑夜的白羊丿  阅读(916)  评论(0编辑  收藏  举报