js禁止网页内容复制、选取、禁止右键菜单

发布时间:2019-11-06编辑:脚本学堂
js实现禁止网页内容复制、选取、禁止右键菜单功能,掌握下禁止复制、禁止右键的实现方法,有需要的朋友参考下。

例子,防止复制网站内容的方法。

代码:
 

复制代码 代码示例:
//禁止鼠标右键
$(document).bind("contextmenu", function(e) {
    return false;
});
//禁止键盘按键:
<script type="text/javascript">
      function key() {
          if (event.shiftKey) {
              window.close();
          }
          //禁止Shift
          if (event.altKey) {
              window.close();
          }
          //禁止Alt
          if (event.ctrlKey) {
              window.close();
          }
          //禁止Ctrl
          return false;
      }
      document.onkeydown = key;
</script>
<!-- 禁止选中内容 -->
<script type="text/javascript">
    var omitformtags = ["input", "textarea", "select"]
    omitformtags = omitformtags.join("|")
    function disableselect(e) {
        if (omitformtags.indexOf(e.target.tagName.toLowerCase()) == -1)
            return false
    }
    function reEnable() {
        return true
    }
    if (typeof document.onselectstart != "undefined")
        document.onselectstart = new Function("return false")
    else {
        document.onmousedown = disableselect
        document.onmouseup = reEnable
    }
</script>
<!--禁止网页另存为: -->
<noscript>
<iframe src="/*"></iframe>
</noscript>
 

JS禁止网页复制和拷贝,只需要在body中加入部分代码即可
 

复制代码 代码示例:
<body oncontextmenu="return false" onselectstart="return false"  oncopy="return false">
 

还有另外一种方法,除了禁止另存外,其它功能基本上搞定:
 

复制代码 代码示例:
<body oncontextmenu="return false" ondragstart="return false" onselectstart="return false"
    onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false"
onmouseup="document.selection.empty()">
 

直接加在body标签里就可以。