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 a game controller in CocosCreator

Table of contents 1. Scene layout 2. Add a handle...

js returns to the previous page and refreshes the code

1. Javascript returns to the previous page history...

How to use dd command in Linux without destroying the disk

Whether you're trying to salvage data from a ...

25 Vue Tips You Must Know

Table of contents 1. Limit props to type lists 2....

How to deploy Rancher with Docker (no pitfalls)

Must read before operation: Note: If you want to ...

Detailed explanation of how to view the current number of MySQL connections

1. View the detailed information of all current c...

Detailed explanation of the installation steps of the MySQL decompressed version

1. Go to the official website: D:\mysql-5.7.21-wi...

MYSQL string forced conversion method example

Preface Since the types of the same fields in the...

Detailed explanation of data type issues in JS array index detection

When I was writing a WeChat applet project, there...

MySQL 8.0.16 winx64 installation and configuration method graphic tutorial

I just started learning about databases recently....

Analyze Mysql transactions and data consistency processing issues

This article analyzes the consistency processing ...

Install CentOS system based on WindowsX Hyper-V

At present, most people who use Linux either use ...

Detailed description of HTML table border control

Only show the top border <table frame=above>...

Docker installs Elasticsearch7.6 cluster and sets password

Starting from Elasticsearch 6.8, free users are a...