Disable right-click menu
<body oncontextmenu=self.event.returnValue=false>
Disable left-click copying
<body onselectstart=return false>
Use CSS to control whether text can be selected
.unselectable { user-select: none;}<p>You can select me.</p><p class=unselectable>You can't select me!</p>
Disable right-click menu and left-click copy function
<body oncontextmenu=self.event.returnValue=false onselectstart=return false>
The above is the entire content of this article. I hope it will be helpful to everyone’s study. I also hope everyone will support VeVb Wulin Network.