<html> <head> <title>屏蔽鼠標右鍵</title> <script language="javascript"> function click(){ if (event.button==2){ alert('禁止使用鼠標右鍵!') } } document.onmousedown=click </script> </head> <body> 請在本頁面空白處點擊鼠標右鍵,會看到效果!~ </body> </html>