Português
<!--把下列代码放到<body>区域中--> <script language="JavaScript"> <!-- if (window.Event) document.captureEvents(Event.MOUSEUP); função nocontextmenu() { event.cancelBubble = true event.returnValue = false; retornar falso; } function norightclick(e) { if (window.Event) { if (e.qual == 2 || e.qual == 3) retornar falso; } else if (event.button == 2 || event.button == 3) { event.cancelBubble = true event.returnValue = false; retornar falso; } } document.oncontextmenu = nocontextmenu; // para IE5+ document.onmousedown = norightclick; // para todos os outros //--> </script>