½ûÖ¹ÓÒ¼ü¡¢Ñ¡Ôñ¡¢Õ³Ìù¡¢shift¡¢ctrl¡¢alt...
·¢²¼Ê±¼ä£º2005-3-16
<script language="JavaScript">
<!--
function key(){ 
if(event.shiftKey){
window.close();}
//½ûÖ¹shift
if(event.altKey){
window.close();}
//½ûÖ¹alt
if(event.ctrlKey){
window.close();}
//½ûÖ¹ctrl
return false;}
document.onkeydown=key;
if (window.Event)
document.captureEvents(Event.MOUSEUP);
//swordmaple javascript article.
//from www.jx165.com
function nocontextmenu(){
event.cancelBubble = true
event.returnValue = false;
return false;}
function norightclick(e){
if (window.Event){
if (e.which == 2 || e.which == 3)
return false;}
else
if (event.button == 2 || event.button == 3){
event.cancelBubble = true
event.returnValue = false;
return false;}
}
//½ûÖ¹ÓÒ¼ü
document.oncontextmenu = nocontextmenu;  // for IE5+
document.onmousedown = norightclick;  // for all others
//-->
</script>
<body onselectstart="return false"; onpaste="return false";>
Ñ¡Ôñ×Ö·ûÊÔÊÔ1010110
<input size=30>
<!--onselectstart½ûֹѡÔñ onpaste½ûÖ¹Õ³Ìù-->