js checkbox 全選 取消全選

那個id是什麼東西發表於2018-05-31
<body >
          <input type="button" name="inputfile" id="inputfile" value="點選匯入" onclick="open();"/>
          <input type="file" id="File1" name="File1" style="display:none;">
        <input type="button" name="outbtn" value="匯出"/>
        
    <table border="1">
        <!-- <tr>
    <a href="javascript:;" class="a-upload"> </a>
            </tr>-->
        <tr> 
            <td><input  id="all" type="checkbox" name="yon" onclick="chk()"/></td>
            <td>ID</td>
            <td>地區</td>
        </tr>
        <c:forEach items="${dislist }" var="dis">
            <tr>
            <td><input id="mychk" type="checkbox" name="mychk"/></td>
            <td>${dis.id }</td>
            <td>${dis.name }</td>

        </tr>
     </c:forEach>
     
    </table>

  </body>

<script type="text/javascript" src="js/jquery-1.8.3.js"></script>
    
    <script type="text/javascript">
        /* $("#all").click(function(){
            alert("11111111");
            if(this.checked){
                alert("2222");
                $("mychk").prop("checked",true);
            }else{
                $("mychk").prop("checked",false);
            }
        
        }); */
        function chk(){
            var all = document.getElementById("all");
            var mychk = document.getElementsByName("mychk");
            alert("mychk長度=="+mychk.length);
            if(all.checked==true){
                alert("all.checked==true全選");
                if(mychk.length){
                    for(var i=0;i<mychk.length;i++){
                        mychk[i].checked = true;
                    }
                
                }
                mychk.chcked=true;
            }else{
                alert("all.checked==false全不選");
                if(mychk.length){
                    for(var i=0;i<mychk.length;i++){
                        mychk[i].checked = false;
                    }
                
                }
            }
            
        }   
    </script>

相關文章