IE屏蔽右键

来源:互联网 发布:网站访问量统计js插件 编辑:程序博客网 时间:2024/06/05 09:31
<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>
原创粉丝点击