Home > Article > Web Front-end > Right-clicking on the html page is prohibited, copying is prohibited, image dragging is prohibited, copying and cutting are prohibited
As we all know, the general method of blocking is to use a script written in JS, but you can also directly block the right click and prohibit copying by modifying the properties of the web page.
Disable right click
oncontextmenu="return false"
Disable copying and cutting:
oncopy="return false; "
oncut="return false;"
Copying prohibited
onselectstart="return false"
Disable image dragging
ondragstart="return false"
Example:
This method can simultaneously prohibit right-clicking, mouse copying, and image dragging
For more html pages, right-clicking is prohibited, copying is prohibited, image dragging is prohibited, copying and cutting are prohibited. For related articles, please pay attention to the PHP Chinese website!