How to Disable Copy Paste (Browser)

后端 未结 10 721
旧时难觅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 19:40

    If you are looking for simple HTML to disable COPY and PASTE on a specific element then use below code. You can even block on the whole page by putting it on the body tag.

    oncontextmenu="return false" onkeydown="if ((arguments[0] || window.event).ctrlKey) return false"

提交回复
热议问题