Español
<!--把下列代码放到<body>区域中--> <script language="JavaScript"> <!-- if (window.Event) document.captureEvents(Event.MOUSEUP); función nocontextmenu() { evento.cancelBubble = verdadero evento.returnValue = falso; devolver falso; } función norightclick(e) { if (window.Event) { if (e.cuál == 2 || e.cuál == 3) devuelve falso; } else if (event.button == 2 || event.button == 3) { event.cancelBubble = true event.returnValue = false; devolver falso; } } document.oncontextmenu = nocontextmenu; // para IE5+ document.onmousedown = norightclick; // para todos los demás //--> </script>