window.onbeforeunload=function(){ console.log("为啥不能运行");//这个为什么不出现控制台呢? return ; }
window.onbeforeunload=function(e){ e.returnValue = 'something' console.log("为啥不能运行"); return ; }
必须给事件的returnValue属性绑定一个值,否则浏览器会直接关掉,就看不到console的输出了
2.1m questions
2.1m answers
60 comments
57.0k users