`
ljl_xyf
  • 浏览: 618160 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

屏蔽右键(javascript)兼容ie,firefox

阅读更多

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   http://www.my400800.cn

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics