Set the input to read-only via disabled and readonly

Set the input to read-only via disabled and readonly
There are two ways to achieve read-only input: disabled and readonly.

Naturally, both results can only be read but not edited, but there are big differences between the two.

Disabled means that the input is invalid and its value will not be passed to any program, such as asp, php, etc.
Readonly simply cannot be edited and does not affect the transmission of its value.

Disabled usage: <INPUT type="text" name="username" value="james" disabled>
Readonly usage: <INPUT type="text" name="partNumber" value="1500" readonly>

<<:  A brief discussion on whether too many MySQL data queries will cause OOM

>>:  How to distribute two buttons on the left and right sides of the same parent tag using CSS

Recommend

Deep understanding of the mechanism of CSS background-blend-mode

This article is welcome to be shared and aggregat...

Hexadecimal color codes (full)

Red and pink, and their hexadecimal codes. #99003...

JavaScript deshaking and throttling examples

Table of contents Stabilization Throttling: Anti-...

impress.js presentation layer framework (demonstration tool) - first experience

I haven’t blogged for half a year, which I feel a ...

Detailed explanation of MySQL instance with SSD storage enabled

Detailed explanation of MySQL instance with SSD s...

jQuery realizes the shuttle box effect

This article example shares the specific code of ...

The big role of HTML meta

There are two meta attributes: name and http-equiv...

Docker images export and import operations

What if the basic images have been configured bef...

WeChat applet realizes the nine-square grid effect

This article shares the specific code for the WeC...

MySQL full-text search usage examples

Table of contents 1. Environmental Preparation 2....

Four ways to modify the default CSS style of element-ui components in Vue

Table of contents Preface 1. Use global unified o...

How to use macros in JavaScript

In languages, macros are often used to implement ...