中文(繁体)
<!--下面程式碼放到<head>區域中--> <SCRIPT LANGUAGE=javascript> function click() { alert('禁止你的左鍵複製!') } function click1() { if (event.button ==2) { alert('禁止右鍵點擊~!') }} function CtrlKeyDown(){ if (event.ctrlKey) { alert('不當的拷貝將損害您的系統!') }} document.onkeydown=CtrlKeyDownown ; document.onselectstart=click; document.onmousedown=click1; </SCRIPT> </script>