北极之冰

关闭页面询问用户

function close() //关闭页面时询问用户
{
    var n = window.event.screenX - window.screenLeft;
    var b = n > document.documentElement.scrollWidth-20;

    if (b && window.event.clientY < 0 || window.event.altKey)
    {
        window.event.returnValue = "";
    }
}

onbeforeunload="close();"//写在页面body的onbeforeunload事件中

posted on 2009-04-19 22:48  北极之冰  阅读(144)  评论(0)    收藏  举报