Using jquery to set the disabled property with the Remove disabled property

Source: Internet
Author: User

ReadOnly is valid only for input and textarea, and disabled is valid for all form elements, the following describes the use of jquery to set the disabled property

differences between readonly and disabled in the form:

ReadOnly is valid only for input (Text/password) and textarea, and disabled is valid for all form elements, including Select,radio, CheckBox, button, and so on.

However, when the form element is used with disabled, when we submit the form as a post or get, the value of this element is not passed out. and ReadOnly will pass that value out (this happens when we set the TEXTAREA element in a form to Disabled or readonly, but Submitbutton is available).

JS Operation:

1 function Disableelement (element,val) {2document.getElementById (Element). Disabled=val; 3 }   

Work with JQuery :

1 // two ways to set the Disabled property 2 $ (' #areaSelect '). attr ("Disabled",true); 3 $ (' #areaSelect '). attr ("Disabled", "disabled"); 4 // three ways to remove disabled properties 5 $ (' #areaSelect '). attr ("Disabled",false); 6 $ (' #areaSelect '). Removeattr ("Disabled"); 7 $ (' #areaSelect '). attr ("Disabled", "" ");

get S:textfield, and set its disabled property:

1 Functiondisabletextfieldofaccountdiv (element,val) {2 $ (Element). Find (": TextField"). attr (' Disabled ', Val); 3 }

Using jquery to set the disabled property with the Remove disabled property

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.