`
xiaotianyu
  • 浏览: 3723 次
最近访客 更多访客>>
文章分类
社区版块
存档分类
最新评论

JS屏蔽鼠标右键代码

 
阅读更多

一般的屏蔽右键网页代码,在火狐下是要失效的。
今天给大家推荐的这款,火狐下同样屏蔽右键。不信?那就火狐下真正的测试下吧

将如下JS代码添加到你的网站即可

 

<script type="text/javascript">
//屏蔽右键菜单
document.oncontextmenu = function (event){
 if(window.event){
  event = window.event;
 }try{
  var the = event.srcElement;
  if (!((the.tagName == "INPUT" && the.type.toLowerCase() == "text") || the.tagName == "TEXTAREA")){
   return false;
  }
  return true;
 }catch (e){
  return false;
 }
}
</script>

 

文章来源:http://www.lanrenzhijia.com/comm/2012/1114/1561.html

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics