码迷,mamicode.com
首页 > Web开发 > 详细

jquery cheched 全选/全不选

时间:2018-04-01 23:04:41      阅读:236      评论:0      收藏:0      [点我收藏+]

标签:tle   put   function   type   click   pos   title   false   val   

<!DOCTYPE html>
<html>

    <head>
        <title>Jquery复选框练习</title>
        <!-- 引入jQuery,引入你自己的jQuery文件 -->
        <script type="text/javascript" src="../scripts/jquery-1.7.2.js"></script>
    </head>

    <body>
        <div>
            <p>选择要购买的水果</p>
            <ul class="fruit">
                <li><input type="checkbox" value="001" />苹果</li>
                <li><input type="checkbox" value="002" />雪梨</li>
                <li><input type="checkbox" value="003" />芒果</li>
                <li><input type="checkbox" value="004" />菠萝</li>
            </ul> <input type="checkbox" id="All" /> <button id="checkAll">全选</button> <button id="nothing">
                全不选</button> <button id="reverseAll">反选</button> <button class="chooseFruit">购买</button>
            <script type="text/javascript">
                <!-- 选择全部/全不选 -->
                $("#All").click(function(){ if("this.checked"){
                    $("#fruit :checkbox").prop("checked", true);
                }else{
                    $("#fruit :checkbox").prop("checked", false);
                }
                });
                <!--选择全部-->
                $("#checkAll").click(function(){ $("#fruit :checkbox").prop("checked", true); });
                <!--全不选-->
                $("#nothing").click(function(){ $("#fruit :checkbox").prop("checked", false); });
                <!--反选--> $("#reverseAll").click(function(){ $("#fruit :checkbox").each(function(i){
                    $(this).prop("checked",
                    !$(this).prop("checked"));
                });
                });
                <!--获取选中复选框的值--> $(".chooseFruit").click(function(){
                    var arr = new Array();
                    $("#fruit :checkbox[checked]").each(function(i){
                        arr[i] = $(this).val();
                    });
                    var vals = arr.join(",");
                    console.log(vals); });
            </script>
        </div>
    </body>

</html>

jquery cheched 全选/全不选

标签:tle   put   function   type   click   pos   title   false   val   

原文地址:https://www.cnblogs.com/gerry/p/8688601.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!