网页中禁止使用鼠标右键操作

Posted 遇见Time

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了网页中禁止使用鼠标右键操作相关的知识,希望对你有一定的参考价值。

直接在前端加入下列代码即可实现。

<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>

以上是关于网页中禁止使用鼠标右键操作的主要内容,如果未能解决你的问题,请参考以下文章

HTML代码片段

打开某些网页后,鼠标右键被禁用了怎么办

js相关禁止

OnContextMenu实现禁止鼠标右键

禁止右键点击以及复制功能

网页中最常用的JS代码(js禁止右键禁止复制,设为首页,加入收藏代码)