首页 > 其他 > 详细

复选框实现

时间:2016-09-01 13:02:43      阅读:249      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<head lang="en">
    <meta charset="UTF-8">
    <title></title>
    <script  src="jquery-3.0.0.min.js">    </script>
<!--    <script type="text/javascript"></script>-->
        <script type="text/javascript">
        $(document).ready(function(){
       //var checkall2=document.getElementById("checkall");
        //var checkno2=document.getElementById("checkno");
        var checkss=$(‘#checkbox input‘);
        //alert(typeof(checkss));
        $(‘#checkall‘).click(function(){
            //alert("jjjj");
            for(var i=0;i<checkss.length;i++){
            if(!checkss.eq(i).is(‘:checked‘));{
            checkss.eq(i).prop(‘checked‘,true);
            }
            }
            //checkss.attr(‘checked‘,true);
        });
        $(‘#checkno‘).click(function(){
            //alert(‘ss‘);
            for(var i=0;i<checkss.length;i++){
            if(checkss.eq(i).is(‘:checked‘));{
            checkss.eq(i).prop(‘checked‘,false);
            }
            }
            
           // checkss.attr(‘checked‘,false);
        });
        });
        //注意:jquery1.7以上的版本用此方法只能第一次好用,第二次就会失效,需要把 checkss.eq(i).attr(‘checked‘, true);改为:checkss.eq(i).prop(‘checked‘,true);
        </script>

        

</head>
<body>
    <form id="form1">
        全选<input  id="checkall" type="button">
        全不选<input id="checkno"  type="button">
        <div id="checkbox">
            <input type="checkbox">3C
            <input type="checkbox">服饰
            <input type="checkbox">生活
            <input type="checkbox">视频
        </div>
    </form>
</body>
</html>

 

复选框实现

原文:http://www.cnblogs.com/Aaron-dzl/p/5829325.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!