右键失效

类别:Asp 点击:0 评论:0 推荐:
<script language="javascript">
   <!--
   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; //对ie5.0以上
 document.onmousedown = norightclick; //对其它浏览器
 //-->
 </script>
放在HEAD之间

本文地址:http://com.8s8s.com/it/it8474.htm