Multiple methods for jquery to operate checked attributes and disabled attributes _ jquery

Source: Internet
Author: User
This article mainly introduces multiple methods for jquery to control the checked attribute and the disabled attribute. Here we only mention checked. In fact, the usage of disabled in jquery is exactly the same as that of checked, if you need a friend, you can refer to the two methods below. There is no difference, but there is less code...

The Code is as follows:




Jquery has three methods to determine checked:

The Code is as follows:


. Attr ('checked'): // check version 1.6 + and return: "checked" or "undefined"; 1.5-return: true or false
. Prop ('checked'): // 16 +: true/false
. Is (': checked'): // All Versions: true/false // do not forget the colon.

Several methods of jquery value assignment checked:

All jquery versions can be assigned the following values:

The Code is as follows:


$ ("# Cb1"). attr ("checked", "checked ");
$ ("# Cb1"). attr ("checked", true );

Four values of jquery1.6 +: prop:

The Code is as follows:


$ ("# Cb1"). prop ("checked", true); // you can leave it simple.
$ ("# Cb1"). prop ({checked: true}); // map key-Value Pair

$ ("# Cb1"). prop ("checked", function (){
Return true; // The function returns true or false.
});

$ ("# Cb1"). prop ("checked", "checked ");

Http://api.jquery.com/prop/ for more information

The Code is as follows:




Test



Related Article

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.