Pure JS Implementation Click the Select All/all uncheck checkbox function

Source: Internet
Author: User

Html

<id= "select_direction"  type= "button"  onclick= " Select_check (); " select_direction = "F" value = "Select All/Select All" />

Js

//JS Select all check box buttonfunctionSelect_check () {//get all input collections    varObj_input = document.getelementsbytagname (' input '); varobj_input_checked = []; varObj_select_check = document.getElementById (' select_direction ')); //get all IDs containing checked_ worth collection     for(varI=0;i < Obj_input.length; i++)    {        varres = Obj_input[i].id.match (' Checked_ '); if(Res! =NULL) {Obj_input_checked.push (obj_input[i]); }    }        //Select all check boxes    if(Obj_select_check.getattribute (' select_direction ') = = ' F ')    {         for(varI=0;i < Obj_input_checked.length; i++) {obj_input_checked[i].checked=true; } obj_select_check.setattribute (' Select_direction ', ' t '); }    //Cancel all check boxes    Else    {         for(varI=0;i < Obj_input_checked.length; i++) {obj_input_checked[i].checked=false; } obj_select_check.setattribute (' Select_direction ', ' F '); }}

Pure JS Implementation Click the Select All/all uncheck checkbox function

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.