JS獲取checkbox的個數

 

本文算是轉載自網絡,當時用了他的函數,如今想總結一下,但忘了原文地址了j_0068.gifhtml

=======================================================================web

JS獲取多選框checkbox被選中的個數。數組

===================================網絡

 

var checkbox = document.getElementsByName("likes[]");  //此處經過此種方式才能得到多選框爲數組。
//like爲name = "like[]" , 得到時必須加上[]
var checked_counts = 0;

for(var i=0;i<checkbox.length;i++){
if(checkbox[i].checked){ //被選中的checkbox
checked_counts++;
}
}

alert(checked_counts);

 

============================================================函數

我作的是每點擊一下多選框就判斷當前checked個數是否超過某個數值spa

============================================================code

function  checkDate(){ 
    var n = $("#cart_q_num").val(); 
      var checkedCount=0; 
      var checkbox = document.getElementsByName("tie_in[]");
      //alert(checkbox.length);
      for(var i=0;i<checkbox.length ;i ++){ 
      if(checkbox[i].checked){ 
         checkedCount++; 

          } 
      } 
      //alert(checkedCount);
       if(checkedCount>n){ 
              alert("The quantity of the gifts should equal to the quantity of the sunglasses set."); 
           return false; 
      }else{
          $("#free_pro_selected_num").html(checkedCount);
       }
} 

 

要使函數checkdata()每次點擊都發揮做用,須要在checkbox框中添加onclick事件:orm

 
 <input type="checkbox" name="tie_in[]" value="1" onClick="return checkData()" /> 
相關文章
相關標籤/搜索