How to Disable Copy Paste (Browser)

后端 未结 10 725
旧时难觅i
旧时难觅i 2020-11-27 19:36

I am trying 2 alternatives:

  • Ignore right-click
  • Ignore ctrl + C, ctrl + A

This is my code:

10条回答
  •  我在风中等你
    2020-11-27 20:05

    You can control what text is put into the clipboard:

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

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

提交回复
热议问题