阻止页面跳转

5,579 阅读1分钟

有时候页面打开会倒计时跳转,我们想看看里面代码咋办?

使用下面代码,会阻止页面跳转和关闭

window.onbeforeunload = function(event) { 
	console.log(event);
	return false;
}