코드 복사 코드는 다음과 같습니다. <!--<BR> //마우스 오른쪽 버튼 비활성화, Ctrl N, Shift F10, F11, F5 새로고침, 백스페이스 키<BR> //작성자: meizz (梅花雨) 2002-6-18 </P> <P>function document.oncontextmenu(){event.returnValue=false;}//마우스 오른쪽 버튼 보호<BR>function window.onhelp(){return false} //F1 도움말 보호<BR>function document.onkeydown( )<BR>{<BR> if ((window.event.altKey)&&<BR> ((window.event.keyCode==37)|| //Alt 화살표 키 보호 ←<BR> (window.event. keyCode== 39))) //Alt 방향 키 차단→<BR> {<BR> Alert("웹에서 ALT 방향 키를 사용하여 앞뒤로 이동할 수 없습니다!");<BR> event.returnValue=false;<BR> }<BR> /* 참고: Alt 방향 키를 실제로 보호하는 것은 아닙니다. <BR> Alt 방향 키를 누르면 경고 상자가 표시되므로 Alt 키를 누르세요. <BR> 경고 상자를 마우스로 클릭하세요. 이 차폐 방법은 유효하지 않습니다. 앞으로 <BR> 실제로 Alt 키를 차단할 수 있는 방법이 있는 전문가가 있다면 알려주세요. */</P> <P> if ((event.keyCode==8) || //백스페이스 삭제 키 보호<BR> (event.keyCode==116)|| .keyCode==82)){ //Ctrl R<BR> event.keyCode=0;<BR> event.returnValue=false;<BR> }<BR> if (event.keyCode==122){event.keyCode =0;event.returnValue=false;} //Shield F11<BR> if (event.ctrlKey && event.keyCode==78) event.returnValue=false; //Shield Ctrl n<BR> if (event.shiftKey && event.keyCode==121)event.returnValue=false; 쉴드 시프트 F10<BR> if (window.event.srcElement.tagName == "A" && window.event.shiftKey) <BR> window.event.returnValue = false; window.showModelessDialog("about:blank"," ","dialogWidth:1px;dialogheight:1px");<BR> return false;<BR> }<BR>}<BR>--><br>< ;/script><br><br><br> </div>