HTML implements read-only text box and cannot modify the content

HTML implements read-only text box and cannot modify the content

Without further ado, I will post the code for you directly. The specific code is as follows:

 <!--Method 1: onfocus=this.blur() When the mouse cannot be placed, it will lose focus-->
<input type="text" name="input1" value="中国" onfocus=this.blur()> 
<!-- Method 2: readonly text will not change color and is not editable -->
<input type="text" name="input1" value="中国" readonly> 
<input type="text" name="input1" value="中国" readonly="true"> 
<!-- Method 3: disabled The text will turn gray and cannot be edited. -->
<input type="text" name="input1" value="中国" disabled="true">

Summarize

The above is the editor's introduction to HTML to implement text box read-only and cannot modify the content. I hope it will be helpful to everyone. If you have any questions, please leave me a message and the editor will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Introduction to root directory expansion under Linux system

>>:  A brief discussion on two methods of achieving semi-transparent background color in CSS

Recommend

How to use Docker to package and deploy images locally

First time using docker to package and deploy ima...

Detailed tutorial on installing Tomcat9 windows service

1. Preparation 1.1 Download the tomcat compressed...

How to install redis in Docke

1. Search for redis image docker search redis 2. ...

About the location of the H1 tag in XHTML

There has been a lot of discussion about H1 recent...

Vue uses v-model to encapsulate the entire process of el-pagination components

Use v-model to bind the paging information object...

Nginx http health check configuration process analysis

Passive Check With passive health checks, NGINX a...

MySQL 5.7.10 Installation Documentation Tutorial

1. Install dependency packages yum -y install gcc...

MySQL DeadLock troubleshooting full process record

【author】 Liu Bo: Senior Database Manager at Ctrip...

JavaScript to achieve dynamic table effect

This article shares the specific code for JavaScr...

Detailed installation process of nodejs management tool nvm

nvm nvm is responsible for managing multiple vers...

A detailed introduction to JavaScript primitive values ​​and wrapper objects

Table of contents Preface text Primitive types Pr...

Docker installation of Nginx problems and error analysis

question: The following error occurred when insta...