前端阻止复制

// 如果是iframe,把document换成iframe对应的document即可
document.body.style.userSelect = 'none'; // 禁止选中
          document.body.oncontextmenu = "return false"; // 禁止邮件
          document.oncopy = function() { // 禁止复制
            return false;
          }
          document.body.onselectstart = "return false;" // 禁止选择
          document.onkeydown = function(event) { // 屏蔽ctrl,alt,shift
            if(event.ctrlKey) return false;
            if(event.altKey) return false;
            if(event.shiftKey) return false;
          }
前端阻止复制
本文作者
spark1e
发布于
2024-07-22
许可协议
转载或引用本文时请遵守许可协议,注明出处、不得用于商业用途!
评论区 - Powered by Giscus