jQuery实现CheckBox全选、全不选

发布时间:2020-03-25 12:57:08 作者:gongzi_xiaowang
来源:网络 阅读:1340

<!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"> 
<head runat="server"> 
<title>jQuery实现CheckBox全选、全不选</title> 
<script src="http://code.jquery.com/jquery-1.4.4.min.js" type="text/javascript"></script>    <script type="text/javascript"> 
         $(function() { 
            $("#checkAll").click(function() { 
                $('input[name="subBox"]').attr("checked",this.checked);  
            }); 
            var $subBox = $("input[name='subBox']"); 
            $subBox.click(function(){ 
                $("#checkAll").attr("checked",$subBox.length == $("input[name='subBox']:checked").length ? true : false); 
            }); 
        }); 
</script> 
</head> 
<body> 
   <div> 
      <input id="checkAll" type="checkbox" />全选 
      <input name="subBox" type="checkbox" />项1 
      <input name="subBox" type="checkbox" />项2
      <input name="subBox" type="checkbox" />项3 
      <input name="subBox" type="checkbox" />项4 
   </div> 
</body> 
</html>

推荐阅读:
  1. jquery实现全选全不选
  2. 纯js实现checkbox的全选、反选、全不选

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

web checkbox jquery

上一篇:c#实例 让你明白什么是继承

下一篇:mongodb复制集+分片生产环境实践

相关阅读

您好,登录后才能下订单哦!

密码登录
登录注册
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》