Box = 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个数是否超过某个数值
Box = document.getElementsByName("tie_in[]");
//alert(checkBox.length);
for(var i=0;i
}
}
//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);
}
}