How JavaScript gets the value of a checked checkbox

Source: Internet
Author: User

Tag: Gets the value of the checked checkbox

Idea: Use the Name property value to get the CheckBox object, and then loop through the Checked property (true indicates that it is selected, False indicates unchecked). The following example shows:

1. HTML structure

<input type= "checkbox" name= "Test" value= "1"/><span>1</span><input type= "checkbox" name= "Test" Value= "2"/><span>2</span><input type= "checkbox" name= "Test" value= "3"/><span>3</ Span><input type= ' button ' value= ' Submit ' onclick= ' fun () '/>

2. JavaScript code

function Fun () {obj = Document.getelementsbyname ("Test"), Check_val = [];for (k in obj) {if (obj[k].checked) Check_val.push (Obj[k].value);} alert (check_val);}


How JavaScript gets the value of a checked checkbox

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.