The difference between HTML readonly and disabled

Source: Internet
Author: User
Tags html form

Today I created an HTML form, one of which is sequence number, which is automatically generated asynchronously from the background using AJAX, and I don't want the user to modify the value, so I use the following HTML code to handle it:

<path= "SequenceNumber"  ID= "sequencenumber"  Disabled= "true"/>

Now that's the problem, my form submits to the spring MVC controller to discover that the SequenceNumber field of the Dto Pojo is empty. I used the following HTML code to try my luck when I was baffled:

<path= "SequenceNumber"  ID= "sequencenumber"  ReadOnly= "true"/>

Did not expect this entity class SequenceNumber has the value, in order to identify the cause of the problem, above the w3cschool above the brain complements the two attributes of the difference:

The Disabled property specifies that the input element should be disabled. The disabled INPUT element is neither available nor clickable.

The ReadOnly property specifies that the input field is read-only. A read-only field cannot be modified.

Obviously, one is disabled, the other is read-only, and the difference is quite large.

The difference between HTML readonly and disabled

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.