jQuery實現全選反選功能

來源:互聯網
上載者:User

標籤:class   ext   type   運行   cli   版本問題   20px   htm   status   

廢話不說,直接上代碼!

<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"><script type="text/javascript" src="jquery-3.1.1.min.js"></script><title>Insert title here</title></head><body><div style="margin: 20px;">        全選:<input type="checkbox" id="selectAll" onclick="selects1()">    </div><div style="width:600px;height: 40px;border: 1px solid #ccc">    多選框1:<input type="checkbox" class="check_class">    多選框2:<input type="checkbox" class="check_class">    多選框3:<input type="checkbox" class="check_class">    多選框4:<input type="checkbox" class="check_class">    多選框5:<input type="checkbox" class="check_class">    多選框6:<input type="checkbox" class="check_class"></div><br><script type="text/javascript">/* * 方法1 在工作電腦和本地電腦都可以正常工作 * 方法2 在工作電腦只起一次作用,即勾選全選,反選後。再次勾選,不再起作用。本地電腦一樣可以正常運行 * 可能原因是jquery版本問題 ? 工作電腦jQuery版本為1.11系列。這裡為3.1.1 */    //實現方法1    function selects1(){        //實現全選,反選功能        var selectStatus = $(‘#selectAll‘).is(‘:checked‘);        $(‘.check_class‘).each(function(){            $(this).prop(‘checked‘,selectStatus);        });    }        //實現方法2    function selects2(){        //實現全選,反選功能        var selectStatus = $(‘#selectAll‘).is(‘:checked‘);        $(‘.check_class‘).each(function(){            $(this).attr(‘checked‘,selectStatus);        });    }        </script></html>

 

jQuery實現全選反選功能

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.