JavaScript to implement checkbox selection code _javascript tips

Source: Internet
Author: User

Code:

function Checkall (checknames) {
  var allboxs = Document.getelementsbyname (checknames);
  for (var i = 0; i<allboxs.length;i++) {
    if (allboxs[i].type = = ' checkbox ') {
      if (allboxs[i].checked==false) {
        allboxs[i].checked = true;
      } else{
        allboxs[i].checked = false;}}}

How to use ①

Copy Code code as follows:

<a href= "" onclick= "checkall (' goods ')" > select all </a>

Note: ' Goods ' is the name of all checkbox that needs to be checked

How to use ②

<a href= "" id= "Checkall" > select all </a>
<script>
document.getElementById (' Checkall '). onclick = function () {
  checkall (' goods ')
};
</script>

Note: ' Goods ' is the name of all checkbox that needs to be checked

The above 2 kinds of methods are summarized in this article all the content, I hope you can like, if there is a better way, also invited the small partners to sue, this article continues to update.

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.