JavaScript:
1.右鍵按下提示
2.超連結上反應關閉
3.鎖住右鍵選單&鍵盤選單
4.鎖住滑鼠選取功能
5.鎖住滑鼠拖曳功能

<script language="JavaScript">
function right(mousebutton)
{
if (event.button == 2 || event.button==3)
{
alert("滑鼠右鍵按下");
return false;
}
}
function mov()
{
return false;
}
document.onmousedown=right;
document.onmousemove=mov;
document.oncontextmenu=mov;
document.onselectstart=mov;
document.ondragstart=mov;
</script>