js禁止鼠标右键、网页禁止鼠标右键、html页面禁止用户使用鼠标右键的方法!
使用方法:
直接复制下面的源码放到html代码后面就可以了
<script> // 禁止网页右键 start if (window.Event){ document.captureEvents(Event.MOUSEUP); } function nocontextmenu(){ event.cancelBubble = true event.returnValue = false; return false; } function norightclick(e){ if (window.Event){ if (e.which == 2 || e.which == 3) return false; }else{ if (event.button == 2 || event.button == 3){ event.cancelBubble = true event.returnValue = false; return false; } } } document.oncontextmenu = nocontextmenu; document.onmousedown = norightclick; // 禁止网页右键 end </script>