Use JQUERY to operate Radio

Source: Internet
Author: User

Use JQUERY to operate Radio

Radio is often used in development to achieve the user's choice. I have accumulated some methods to operate Radio using JQUERY in the project. Here I will share with you for reference.

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

$ ("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.

$ ('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 );



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.