jQuery實現CheckBox全選、全不選

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>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章