如何禁用复制粘贴(浏览器)

IT技术 javascript jquery html keyboard-shortcuts
2021-02-28 18:37:31

我正在尝试两种选择:

  • 忽略右键
  • 忽略ctrl+ C, ctrl+A

这是我的代码:

function noMenu() {
  return false;
}
function disableCopyPaste(elm) {
  // Disable cut/copy/paste key events
  elm.onkeydown = interceptKeys
  // Disable right click events
  elm.oncontextmenu = function() {
    return false
  }
}
function interceptKeys(evt) {
  evt = evt||window.event // IE support
  var c = evt.keyCode
  var ctrlDown = evt.ctrlKey||evt.metaKey // Mac support
  // Check for Alt+Gr (http://en.wikipedia.org/wiki/AltGr_key)
  if (ctrlDown && evt.altKey) return true
  // Check for ctrl+c, v and x
  else if (ctrlDown && c==67) return false // c
  else if (ctrlDown && c==86) return false // v
  else if (ctrlDown && c==88) return false // x
  // Otherwise allow
  return true
}

这是我的 HTML:

<body class="node88" oncontextmenu="return noMenu();" onkeydown="return disableCopyPaste();">

noMenu()功能正在运行,但disableCopyPaste()不起作用。

6个回答

你不能。

您可以尝试阻止某些向量(例如黑客使右键单击更加困难,拦截ctrl+ c,使其难以选择文本)......但它们只会起作用,并且不可能阻止所有向量(编辑 - >复制? 查看源代码?wget? 等…)。

如果您试图保护您的内容免受技术含量较低的用户的侵害,这些方法可能没问题……但正如这里的评论所暗示的那样,它们会让更多技术用户感到沮丧。

如果您有必须受到保护的敏感内容,您可能需要考虑将其嵌入 Flash blob 或 DRM 格式的 PDF。这些仍然可以进行逆向工程,但需要稍微聪明一点的攻击者。

除了它们存在的事实之外,我不知道关于它们的很多细节,但这里是 Adob​​e 的营销网站,它可能会帮助您入门:adobe.com/ca/products/acrobat/...
2021-05-09 18:37:31

您可以禁用页面上的文本选择,而不是试图控制用户的键盘命令(某些浏览器可能会将其检测为恶意代码)。尽管这不会避免如您的评论中所述复制数据。

<!-- Disable Copy and Paste-->
<script language='JavaScript1.2'>
function disableselect(e) {
    return false
}

function reEnable() {
    return true
}

document.onselectstart = new Function (&quot;return false&quot;)

if (window.sidebar) {
    document.onmousedown = disableselect
    document.onClick = reEnable
}
</script>

把这个放在你的

    <head> </head> 

标签,用户无法在您的页面上选择文本。

http://myblog-log.blogspot.com/2007/06/disable-copy-and-paste.html 上找到

你为什么使用new Function (&quot;return false&quot;)而不是仅仅使用function () { return false; }
2021-04-20 18:37:31
我不知道你刚才问我什么,你没有提供链接。
2021-04-21 18:37:31
谢谢,如果我需要编辑 <body></body> 标签,你能告诉我吗?示例:看看我的第一篇文章到正文标签
2021-05-04 18:37:31
是的,将上面的脚本放在您的 head 标签中。
2021-05-14 18:37:31

Javascript:

//disable mouse drag select start

document.onselectstart = new Function('return false');

function dMDown(e) { return false; }

function dOClick() { return true; }

document.onmousedown = dMDown;

document.onclick = dOClick;

$("#document").attr("unselectable", "on"); 

//disable mouse drag select end

//disable right click - context menu

document.oncontextmenu = new Function("return false");


//disable CTRL+A/CTRL+C through key board start

//use this function


function disableSelectCopy(e) {

// current pressed key

    var pressedKey = String.fromCharCode(e.keyCode).toLowerCase();

    if (e.ctrlKey && (pressedKey == "c" || pressedKey == "x" || pressedKey == "v" || pressedKey == "a")) {

        return false;

    }

}

document.onkeydown = disableSelectCopy;


//or use this function

$(function () {

    $(document).keydown(function (objEvent) {

        if (objEvent.ctrlKey || objEvent.metaKey) {

            if (objEvent.keyCode == 65 || objEvent.keyCode == 97) {

                return false;

            }

        //}

        }

    });

});

CSS:

//disable selection through CSS for different browsers

#document, #ctl00_MasterPageBodyTag{
    user-select: none;
    -ms-user-select: none;
    -o-user-select:none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

//where #document is the div for which select needs to be disabled and #ctl00_MasterPageBodyTag is the id of the body tag.

您可以控制将哪些文本放入剪贴板:

document.addEventListener('copy', function(e) {
    e.clipboardData.setData('text/plain', 'Please do not copy text');
    e.clipboardData.setData('text/html', '<b>Please do not copy text</b>');
    e.preventDefault();
});

https://developer.mozilla.org/en-US/docs/Web/Events/copy

为什么不尝试使文本不可选择?

.unselectable {
  -webkit-user-select: none;  /* Chrome all / Safari all */
  -moz-user-select: none;     /* Firefox all */
  -ms-user-select: none;      /* IE 10+ */
  user-select: none;          /* Likely future */       
}


/*Mobile*/

-webkit-touch-callout: default   /* displays the callout */
-webkit-touch-callout: none      /* disables the callout */

我也将很快编辑这个答案。我在看同样的问题。但是我找到了一些关于如何覆盖的信息。我正在编写一个 JS 函数,当用户复制剪贴板时,它会被覆盖。无论如何都会在完成后发布。还在试验它。您可以阅读我在 css 技巧上找到的文章。

https://css-tricks.com/copy-paste-the-web/

在 Vivaldi(使用 Chrome 引擎)中,文本没有被选中,但它在 Ctrl+C 后被复制到剪贴板,这很奇怪......
2021-05-09 18:37:31