js onbeforeunload 事件请教
本人想做个 关闭浏览器 注销 session但是 ie7以上版本浏览器(本人测试环境为IE8) 在多窗口的模式下 关闭浏览器
不触发 onbeforeUnload 事件
从网上找了个代码 请老师们 指教
window.onbeforeunload = function()
{
var n = window.event.screenX - window.screenLeft;
var b = n > document.documentElement.scrollWidth-20;
if(b && window.event.clientY < 0 || window.event.altKey)
{
alert("是关闭而非刷新");
//这里可以放置你想做的操作代码
}
}