Two methods to disable form controls in HTML: readonly and disabled

Two methods to disable form controls in HTML: readonly and disabled
In the process of making web pages, we often use forms. But sometimes we want the controls on the form to be unchangeable. For example, in a password modification web page, the text box that displays the user name should be unchangeable.

There are two ways to disable in HTML, they are:

1. Add the readonly='readonly' attribute to the control tag
2. Add the disabled='disabled' attribute to the control tag

Example:


Copy code
The code is as follows:

<input type="text" value="read-only" readonly="readonly" />
<input type="text" value="Not available" disabled="disabled" />


Both controls in the example are not editable. But they also have some differences!

From the literal meaning, we can know that a control with the readonly attribute is "read-only", while a control with the disabled attribute is "disabled". So what is the difference between them?

The user cannot modify the value of a read-only control (a control that uses the readonly attribute) with the mouse or keyboard, but the programmer can modify it with JavaScript. When the form is submitted, the name and value of the control will be submitted to the server, which means it is visible to the server.

Disabled controls (controls with the disabled attribute) cannot be modified by users with the mouse and keyboard, and are also invisible to the server. That is, their names and values ​​are not submitted to the server when the form is submitted. Of course, programmers can also use JavaScript to modify their values.

This is their difference. After knowing the difference, we should know when to use which method, and we must not be blind!

<<:  Syntax alias problem based on delete in mysql

>>:  How to use CSS pseudo-elements to control the style of several consecutive elements

Recommend

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

By right-clicking the source file, the following c...

Use JavaScript to create page effects

11. Use JavaScript to create page effects 11.1 DO...

Quickly get started with VUE 3 teleport components and usage syntax

Table of contents 1. Introduction to teleport 1.1...

js to achieve a simple magnifying glass effect

This article shares the specific code of js to ac...

Summary of XHTML application in web design study

<br />Generally speaking, the file organizat...

Sample code for seamless scrolling with flex layout

This article mainly introduces the sample code of...

Command to remove (delete) symbolic link in Linux

You may sometimes need to create or delete symbol...

Docker meets Intellij IDEA, Java development improves productivity tenfold

Table of contents 1. Preparation before developme...

What are the benefits of using // instead of http:// (adaptive https)

//Default protocol /The use of the default protoc...

Javascript tree menu (11 items)

1. dhtmlxTree dHTMLxTree is a feature-rich Tree M...

Complete Tutorial on Deploying Java Web Project on Linux Server

Most of this article refers to other tutorials on...

HTML+CSS+JavaScript to achieve list loop scrolling example code

Description: Set a timer to replace the content of...

Detailed explanation of CocosCreator Huarongdao digital puzzle

Table of contents Preface text 1. Panel 2. Huaron...