浏览器快捷键:ctrl/shift/alt+鼠标左键时 关闭当前窗口 (应对跳转页面有遮罩的情况)

document.οnmοuseup=function ()  
{
    if( event.shiftKey ){ 
        window.opener=null;window.open('','_self');window.close();
    }
    if( event.ctrlKey ){ 
        if( navigator.appName.indexOf("Microsoft Internet Explorer")!=-1 && document.all){//ie
            event.returnValue=false;
        }else{//others
            window.opener=null;window.open('','_self');window.close();
        }
    }
    if( event.altKey )
    {//下载点击位置的元素
        //EV_closeAlert();//关闭遮罩
        //其他效果待解决……
    }
}

你可能感兴趣的:(浏览器快捷方式应对)