Example of Html shielding right-click menu and left-click typing function

Example of Html shielding right-click menu and left-click typing function

Disable right-click menu

<body oncontextmenu=self.event.returnValue=false>

Disable left-click copy

<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 full content of this article. I hope it will be helpful for everyone’s study. I also hope that everyone will support 123WORDPRESS.COM.

<<:  After mybatis-plus paging parameters are passed in, the sql where condition does not have limit paging information operation

>>:  Application of mapState idea in vuex

Recommend

CSS sets Overflow to hide the scroll bar while allowing scrolling

CSS sets Overflow to hide the scroll bar while al...

Vue+SSM realizes the preview effect of picture upload

The current requirement is: there is a file uploa...

MySQL character set viewing and modification tutorial

1. Check the character set 1. Check the MYSQL dat...

How to change the Ali source in Ubuntu 20.04

Note that this article does not simply teach you ...

Ajax jquery realizes the refresh effect of a div on the page

The original code is this: <div class='con...

How to write beautiful HTML code

What Beautiful HTML Code Looks Like How to write ...

Basic application methods of javascript embedded and external links

Table of contents Basic application of javascript...

64-bit CentOs7 source code installation mysql-5.6.35 process sharing

First install the dependent packages to avoid pro...

How to play local media (video and audio) files using HTML and JavaScript

First of all, for security reasons, JavaScript ca...

Implementation of installing and uninstalling CUDA and CUDNN in Ubuntu

Table of contents Preface Install the graphics dr...

How to use sed command to efficiently delete specific lines of a file

Preface Normally, if we want to delete certain li...

Eight hook functions in the Vue life cycle camera

Table of contents 1. beforeCreate and created fun...

Analysis of the causes of accidents caused by Unicode signature BOM

Maybe you are using include files here, which is u...