屏蔽右键菜单

//屏蔽右键菜单
 
document.oncontextmenu = function (event){
 
    if(window.event){
 
        event = window.event;
 
    }try{
 
        var the = event.srcElement;
 
        if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
 
            return false;
 
        }
 
        return true;
 
    }catch (e){
 
        return false; 
 
    } 
 
}

posted on 2013-11-21 21:06  小刈  阅读(103)  评论(0编辑  收藏  举报

导航