破釜沉舟论坛 » 网页制作初级班 » 无提示型,禁止右键代码

2006-4-15 16:00 一颗孤独星
无提示型,禁止右键代码

  <!--禁右-->
<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; // for IE5+
document.onmousedown = norightclick; // for all others
//-->
</script>

2006-4-17 09:34 笨小孩
收下了

2006-10-22 07:22 一颗孤独星
随便啦~~~~~~

页: [1]


Powered by Discuz! Archiver 5.5.0  © 2001-2006 Comsenz Inc.