<SCRIPT LANGUAGE=javascript> function click() { alert('禁止你的左鍵復(fù)制!') } function click1() { if (event.button==2) {alert('禁止右鍵點(diǎn)擊~!') }} function CtrlKeyDown(){ if (event.ctrlKey) {alert('不當(dāng)?shù)目截悓p害您的系統(tǒng)!') }} document.onkeydown=CtrlKeyDown; document.onselectstart=click; document.onmousedown=click1; </SCRIPT>