2016年4月7日 js的全选和反选

<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8"/>
        <title></title>
        <script type="text/javascript">
        window.onload=function(){
            var aInp=document.getElementsByTagName('input');
            aInp[0].onclick=function(){
                for(var i=1;i<aInp.length;i++){
                    
                    aInp[i].checked=!aInp[i].checked;
                    
                }
            }
            
        }
        </script>
        <style type="text/css">
            li{height: 24px; margin-bottom: 3px; list-style: none;}
            
        </style>
    
        </head>
        
    <body>
        <input type="button" name="" id="" value="反选" />
        <ul>
            <li><input type="checkbox" checked="checked" /></li>
            <li><input type="checkbox" checked="checked" /></li>
            <li><input type="checkbox" checked="checked" /></li>
            <li><input type="checkbox" checked="checked" /></li>
            <li><input type="checkbox" checked="checked" /></li>
            <li><input type="checkbox" checked="checked" /></li>
            <li><input type="checkbox" checked="checked" /></li>
        </ul>


    </body>
    
    
</html>

 

posted @ 2016-04-07 15:34  余***龙  阅读(229)  评论(0编辑  收藏  举报