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

Description of meta viewport attribute in HTML web page

HTML meta viewport attribute description What is ...

HTML framework_Powernode Java Academy

1. Framework A browser document window can only d...

MySql index improves query speed common methods code examples

Use indexes to speed up queries 1. Introduction I...

Native JS to achieve directory scrolling effects

Here is a text scrolling effect implemented with ...

SVN installation and basic operation (graphic tutorial)

Table of contents 1. What is SVN 2. Svn server an...

MySQL 8.0.14 installation and configuration method graphic tutorial (general)

MySQL service 8.0.14 installation (general), for ...

HTML page header code is completely clear

All the following codes are between <head>.....

Vue imports Echarts to realize line scatter chart

This article shares the specific code of Vue impo...

JavaScript method to detect the type of file

Table of contents 1. How to view the binary data ...

Mysql WorkBench installation and configuration graphic tutorial

This article shares with you the installation and...

Organize the common knowledge points of CocosCreator

Table of contents 1. Scene loading 2. Find Node 1...

13 Most Frequently Asked Vue Modifiers in Interviews

Table of contents 1. lazy 2.trim 3.number 4.stop ...

How to view server hardware information in Linux

Hi, everyone; today is Double 12, have you done a...