How to implement the webpage anti-copying function (with cracking method)

How to implement the webpage anti-copying function (with cracking method)
By right-clicking the source file, the following code is found:
1. You can use CSS to disable the copy function in Firefox
CSS CodeCopy content to clipboard
  1. <style type= "text/css" media= "screen" >
  2. body {-moz-user-select: none ;-webkit-user-select: none ;}
  3. </style>
2. JS is needed to limit in IE

Copy code
The code is as follows:

<script type="text/javascript">
document.onselectstart = function(e) {
return false;
}
document.oncontextmenu = function(e) {
return false;
}
</script>


The complete combination is

Tip: You can modify some of the code before running

Of course, 123WORDPRESS.COM generally provides it at the same time. It is controlled by CSS in Firefox. Of course, you can directly save the code and then delete the CSS code. It's the same in IE. If it's just one article, it's okay. But if there are too many words, people may not be able to bear it.
You can achieve this by disabling js in IE.
Just enter the following code in the IE address bar, note that it is one line.

Copy code
The code is as follows:

javascript:document.oncontextmenu=null;document.onselectstart=null;document.ondragstart=null;document.onbeforecopy=null;document.oncopy=null;document.onselect=null;void(0);

<<:  Introduction to the use of alt and title attributes of HTML img tags

>>:  CSS box hide/show and then the top layer implementation code

Recommend

Solution to data duplication when using limit+order by in MySql paging

Table of contents summary Problem Description Ana...

Basic operations of mysql learning notes table

Create Table create table table name create table...

How to extract string elements from non-fixed positions in MySQL

Preface Note: The test database version is MySQL ...

MySQL string splitting operation (string interception containing separators)

String extraction without delimiters Question Req...

MySQL triggers: creating multiple triggers operation example analysis

This article uses an example to describe the crea...

TypeScript enumeration basics and examples

Table of contents Preface What are enums in TypeS...

Introduction to JavaScript array deduplication and flattening functions

Table of contents 1. Array flattening (also known...

Some tips on deep optimization to improve website access speed

<br />The website access speed can directly ...

React gets input value and submits 2 methods examples

Method 1: Use the target event attribute of the E...

Detailed explanation of Angular data binding and its implementation

Table of contents Preface What is data binding? T...

Understanding JavaScript prototype chain

Table of contents 1. Understanding the Equality R...

Simple steps to write custom instructions in Vue3.0

Preface Vue provides a wealth of built-in directi...