阻止页面跳转 菠萝本尊86906 2019-09-11 5,579 阅读1分钟 有时候页面打开会倒计时跳转,我们想看看里面代码咋办? 使用下面代码,会阻止页面跳转和关闭 window.onbeforeunload = function(event) { console.log(event); return false; }