Disabling Copy/Paste in a Web Page

前端 未结 15 2342
心在旅途
心在旅途 2020-12-14 12:56

How Do I disable the copy paste feature in my webpage. To be precise, I don\'t want my users to copy any information from my website and use them for personal purposes. The

15条回答
  •  感情败类
    2020-12-14 13:37

    Try adding this css:

    #content {
        pointer-events: none;
    }
    

    This will deactivate mouse actions, thus copy-paste too.

提交回复
热议问题