Radio operations using jquery _ jquery-js tutorial

Source: Internet
Author: User
Radio is used to achieve the user's selection effect, and some methods of using JQUERY to operate Radio are accumulated in the project, here, I will share with you the fact that Radio is often used in development to achieve user selection. I have accumulated some methods to operate Radio using JQUERY in the project. Here I will share with you, for your reference.

1. Change the choice of radio to trigger some results.

The Code is as follows:


$ ("Input: radio [name = 'dialcheckresult']"). change (function () {// dial
Alert ("123 ");
});


2. Make all radio available on the page.

$ ("Input: radio"). attr ("disabled", false );

3. Disable all radio on the page.

$ ("Input: radio"). attr ("disabled", "disabled ");

4. Place a radio in the selected status.

$ ("Input: radio [name = 'dialcheckresult']"). eq (0). attr ("checked", true );

5. Make the "unselected" radio unavailable on the page.

$ ("Input: radio: not ([checked])"). attr ("disabled", "disabled ");

6. traverse the radio of the selected state. Except for one radio, the radio of other "selected" States is set to "unselected.

The Code is as follows:


$ ('Input: radio: checked'). each (function (I, val ){
If (val. name! = "DialCheckResult "){
$ ("Input: radio [name = '" + val. name + "']: checked"). attr ('checked', false );
}
});


7. Make radio unavailable in all "unselected" states.

$ ("Input: radio: not ([checked])"). attr ("disabled", "disabled ");

8. Obtain the radio value of a specific NAME.

Var dialCheckResult = $ ("input: radio [name = 'dialcheckresult']: checked"). val ();

9. Place radio in the "unselected" status.

$ ('Input: radio: checked'). attr ('checked', false );

10. Place radio on the page in the "selected" or "unselected" status.

$ ("Input: radio"). attr ("checked", true );

$ ("Input: radio"). attr ("checked", false );

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.