Native JS realizes form checkbook Get the selected value

Source: Internet
Author: User
This article introduces the use of native JS for the implementation from a form checkbox to obtain the selected data value, the specific implementation of the following, interested friends can refer to ha, I hope to help you

Get the selected data value from a form checkbox:

Copy Code code as follows:
<input type= "checkbox" Name= "CB" value= "1"/>aa
<input type= "checkbox" Name= "CB" value= "2"/>bb
<input type= "checkbox" Name= "CB" value= "3"/>cc
<input type= "checkbox" Name= "CB" value= "4"/>dd
<br/>
<input type= "button" value= "Submit" onclick= "checkedvalues ()"/>


Using native JS writing:

Copy Code code as follows:


function Checkedvalues () {
var arr=new Array ();
var checkbox=document.getelementbyname (' CB ');
For (var i=0;i<checkbox.length (); i++) {
if (checkbox[i].checked==true) {
Arr.push (Checkbox[i].value);
alert (Checkbox[i].value);
}
}
}

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.