Detailed explanation of how to prevent content from being selected, copied, or right-clicked in HTML pages

Detailed explanation of how to prevent content from being selected, copied, or right-clicked in HTML pages

Sometimes, we don't want the content presented in our web page to be stolen by someone with ulterior motives, so we need to add a function to prohibit copying on the web page. However, general browsers can still use copy as plain text after prohibiting copying, which cannot completely eliminate this problem. At this time, we need to completely prohibit right-clicking and copying on the page.

It is actually very simple to implement. You only need to add the following tags to the web page (note that it is immediately after the body):

<body topmargin="0" oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">

This is just a preliminary method and can be easily cracked. If you are afraid that the webpage will be saved as a local file by others, you can add the following code to prevent others from saving it:

<noscript>  
<iframe src="*.htm"></iframe>  
</noscript>  

Finally, some webmasters may only need a function to prohibit copying, and do not need to prohibit right-clicking. In this case, add the following code in <body>:

<body onmousemove=/HideMenu()/ oncontextmenu="return false" ondragstart="return false" onselectstart ="return false" onselect="document.selection.empty()" oncopy="document.selection.empty()" onbeforecopy="return false" onmouseup="document.selection.empty()">

The above is the full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  Use of MySQL stress testing tool Mysqlslap

>>:  Docker configuration Alibaba Cloud image acceleration pull implementation

Recommend

Vue implements small form validation function

This article example shares the specific code of ...

Tips for turning pixels into comprehensive brand experiences

Editor: This article discusses the role that inte...

How to query data from multiple unrelated tables and paging in Mysql

Mysql multiple unrelated tables query data and pa...

How to update the view synchronously after data changes in Vue

Preface Not long ago, I saw an interesting proble...

MySQL database JDBC programming (Java connects to MySQL)

Table of contents 1. Basic conditions for databas...

How to avoid garbled characters when importing external files (js/vbs/css)

In the page, external files such as js, css, etc. ...

Detailed steps to install Docker mongoDB 4.2.1 and collect springboot logs

1: Install mongodb in docker Step 1: Install mong...

Detailed explanation of CSS text decoration text-decoration &amp; text-emphasis

In CSS, text is one of the most common things we ...

Summary of MySQL composite indexes

Table of contents 1. Background 2. Understanding ...

How to install MySQL 5.7.29 with one click using shell script

This article refers to the work of 51CTO blog aut...

JS realizes the case of eliminating stars

This article example shares the specific code of ...