jquery_判断checkbox全部选中$(input[namemodules]:checkbox).each(function (){if($(this).attr(ch
jquery_判断checkbox全部选中
$("input[name='modules']:checkbox").each(function (){
if($(this).attr("checked")){
//alert(this.value); //value是checkbox的值 }
})
