Comparison of the use of form element attributes readonly and disabled

Comparison of the use of form element attributes readonly and disabled
1) Scope of application:
readonly:input[type="text"],input[type="password"],input[type="teaxtarea"]
disabled: all form elements, such as select, radio, checkbox, button, etc.

2) Operation:
readonly: users are not allowed to modify the operation, and no other operations are affected
disabled: Prevents all user operations, including user click events and focus events

3) Form submission:
readonly: The value of the form element can be submitted to the server.
disabled: The value of the form element will not be submitted to the server, that is, the server cannot obtain the value of this form element

Common applications:

a> In a form, a unique identification code is pre-filled for the user, and the user is not allowed to change it, but the value needs to be passed when submitting. In this case, its attribute should be set

is readonly;

b>Prevent duplicate submission of the form and use javascript to disable the submit button (form button) after submitting the form.

c>Set checkbox and radio to read-only: disable default events such as: bind("click",function(){return false;}) in jQuery;

<<:  4 ways to achieve a two-column layout with fixed left column and adaptive right column using CSS

>>:  Sample code for making desktop applications with vue + Electron

Recommend

Use the Linux seq command to generate a sequence of numbers (recommended)

The Linux seq command can generate lists of numbe...

mysql replace part of the field content and mysql replace function replace()

[mysql] replace usage (replace part of the conten...

Solution to secure-file-priv problem when exporting MySQL data

ERROR 1290 (HY000) : The MySQL server is running ...

jQuery implements accordion small case

This article shares the specific code of jQuery t...

HTML head structure

The following introduces the commonly used head s...

Detailed explanation of Vue routing router

Table of contents Using routing plugins in a modu...

Analyze Mysql transactions and data consistency processing issues

This article analyzes the consistency processing ...

Centos8 builds nfs based on kdc encryption

Table of contents Configuration nfs server (nfs.s...

Example of Vue uploading files using formData format type

In Vue, we generally have front-end and back-end ...

How to quickly build a LAMP environment on CentOS platform

This article uses an example to describe how to q...

Use Docker to build a Redis master-slave replication cluster

In a cluster with master-slave replication mode, ...

Vue+Vant implements the top search bar

This article example shares the specific code of ...