||  網站導覽  ||  留言版
 
  站長 x 管理人
 
  文章分類
    JAVA
    Database資料庫
    應用程式
    文書處理
    normal一般設定
    Web-design網頁設計
       JSP
       不分類
       .net framework
       asp
       php
    Virtual Machine虛擬機器
    MIS網管
    media多媒體
    未分類
 
 
 
 
js-鎖右鍵和ctrl-A
 
 
 
 
function clickIE4(){
        if (event.button==2){
                return false;
        }//end if
}//end func

function clickNS4(e){
        if (document.layers||document.getElementById&&!document.all){
                if (e.which==2||e.which==3){
                        return false;
                }//end if
        }//end if
}//end func

function OnDeny(){
        if(event.ctrlKey || event.keyCode==78 && event.ctrlKey || event.altKey || event.altKey && event.keyCode==115){
                return false;
        }//end if
}

if (document.layers){
        document.captureEvents(Event.MOUSEDOWN);
        document.onmousedown=clickNS4;
        document.onkeydown=OnDeny();
}else if (document.all&&!document.getElementById){
        document.onmousedown=clickIE4;
        document.onkeydown=OnDeny();
}//end if

document.oncontextmenu=new Function("return false");

document.onkeydown=function(event){
    event=event||window.event;
   
    if(event.keyCode==67 || event.keyCode==65){
        //alert('oh no');
        return false; 
    }

};
 
 
 
 
Copyright © 2012 NBOX. All Rights Reserved.