Use jquery to set the Disabled property and remove the disabled property _jquery

Source: Internet
Author: User

The difference between readonly and disabled in a form:

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

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

JS Operation:

Copy Code code as follows:

function Disableelement (element,val) {

document.getElementById (Element). Disabled=val;

}


jquery for operations:
Copy Code code 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", "");


Gets the S:textfield and sets its disabled property:
Copy Code code as follows:

Functiondisabletextfieldofaccountdiv (element,val) {

$ (Element). Find (": TextField"). attr (' disabled ', Val);
}

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.