jquery setting disabled properties and removing disabled properties

Source: Internet
Author: User

ReadOnly is valid only for input and textarea, and disabled is valid for all form elements.

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:

The code is as follows:

function disableelement (element,val) {  document.getElementById (Element). disabled=val;  }

Work with jquery:

The code is as follows:

// two ways to set the Disabled property $ (' #areaSelect '). attr ("Disabled",true); $ (' #areaSelect '). attr (" Disabled "," disabled "); // three ways to remove the disabled property $ (' #areaSelect '). attr ("Disabled",false); $ (' #areaSelect '). Removeattr ("Disabled"); $ (' #areaSelect '). attr ("Disabled", "" ");

Get S:textfield, and set its disabled property:

The code is as follows:

Functiondisabletextfieldofaccountdiv (element,val) {$ (Element). Find (": TextField"). attr (' disabled ', val);}
View Code



jquery setting disabled properties and removing disabled properties

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.