How to solve the problem of not getting form value after submitting html form input using disabled

How to solve the problem of not getting form value after submitting html form input using disabled

After the form input box input is set to the disable attribute and submitted, the value of the input box cannot be obtained. To solve this type of problem, you can refer to the following two methods:

Method 1:

Use readonly instead of disabled, that is,

disabled="disabled"

Modified to

readonly="readonly"

The difference between the two:

Disabled cannot receive focus and will be skipped when the tab key is used, which may not be successful;
Readonly can receive focus but cannot be modified. You can use the tab key to navigate, which may be successful.
Note: Only successful form elements are valid data, that is, values ​​can be obtained after submission. The value attribute of disabled and readonly text input boxes can only be modified through scripts.

Method 2:

Use type=hidden to hide the input to get the value, and then use disabled to show the input to the user.

<input type="hidden" name="url" value="http://www.neirong.org"/>
<input type="text" value="http://www.neirong.org" disabled="disabled"/>

Summarize

The above is the solution that I introduced to you when the HTML form input cannot obtain the form value after submitting it with disabled. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website!

<<:  Summary of JavaScript Timer Types

>>:  Details of the underlying data structure of MySQL indexes

Recommend

Vendor Prefix: Why do we need a browser engine prefix?

What is the Vendor Prefix? Vendor prefix—Browser ...

Steps to install MySQL 5.7 in binary mode and optimize the system under Linux

This article mainly introduces the installation/st...

MySQL sorting Chinese details and examples

Detailed explanation of MySQL sorting Chinese cha...

A brief discussion on the correct posture of Tomcat memory configuration

1. Background Although I have read many blogs or ...

Docker Compose one-click ELK deployment method implementation

Install Filebeat has completely replaced Logstash...

Detailed explanation of the spacing problem between img tags

IMG tag basic analysis In HTML5, the img tag has ...

6 Practical Tips for TypeScript Development

Table of contents 1. Determine the entity type be...

Example analysis of mysql stored procedure usage

This article describes the usage of MySQL stored ...

Detailed explanation of the role of static variables in MySQL

Detailed explanation of the role of static variab...

Example to explain the size of MySQL statistics table

Counting the size of each table in each database ...

When to use Map instead of plain JS objects

Table of contents 1. Map accepts any type of key ...

Solve the scroll-view line break problem of WeChat applet

Today, when I was writing a small program, I used...

Installation process of CentOS8 Linux 8.0.1905 (illustration)

As of now, the latest version of CentOS is CentOS...

MySql fuzzy query json keyword retrieval solution example

Table of contents Preface Option 1: Option 2: Opt...