onbeforeunload 阻止关闭网页
时间:2015-08-01 阅读:次 QQ群:182913345
js 通过 onbeforeunload 事件阻止关闭网页,实例代码如下:
window.onbeforeunload = function(){ var ie = !-[1,]; if(ie){ var n = window.event.screenX - window.screenLeft; var b = n > document.documentElement.scrollWidth - 20; if(!(b && window.event.clientY < 0 || window.event.altKey)){ return "刷新时弹出"; }else{ return "关闭时弹出"; } }else{ return "非IE内核刷新关闭时都弹出"; } } |
上一篇:JQuery 瀑布流实例代码
下一篇:使用CSS实现文字的竖排的方法