JavaScript implements checkbox full selection of code

Source: Internet
Author: User

This article to share is JS implementation checkbox of the entire selection of code, in the Web page production is very common JS code, for everyone to learn reference.

Code:

?

1 2 3 4 5 6 7 8 9 10 11-12 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 ①

The code is as follows:




&lt;a href= "onclick=" checkall (' goods ') "&gt; select all &lt;/a&gt;

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

How to use ②

?

1 2 3 4 5 6 <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.