Readonly and disabled

Source: Internet
Author: User

How to make the content in input read-only, that is, the user is not allowed to change the content.

<Input type = "text" name = "input1" value = "China"/>
<Input type = "text" name = "input1" value = "China" readonly/>
<Input type = "text" name = "input1" value = "China" disabled/>
We recommend that you do not use disabled. Otherwise, you will not be able to retrieve the value.

<Input type = "text" name = "input1" value = "China" readonly = "true"/>
<Input type = "text" name = "input1" value = "China" readonly/>
Differences:
1. disabled -- cannot be edited at all, and cannot be copied.
2. readonly -- not editable, but can be copied.
3. Readonly is only valid for input (text/password) and textarea, while disabled is valid for all form elements, including select, radio, checkbox, And button.
4. After a form element is disabled, when we submit the form in POST or GET mode, the value of this element will not be passed out, while readonly will pass this value out.

Similarities:
Make input uneditable.

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.