浅谈jquery设置和获得checkbox选中的问题
1. 设置checkbox选中:
//选中多选框 checkbox=$("#agentinfo input[name='veri[]']"); //循环多选框中的值 checkbox.each(function(){ for(var j=0;j<data.veri.length;j++){ //判断当前值是否在数组中 if($(this).val() == data.veri[j]){ $(this).attr('checked','checked');//选中 } } });
2. 通过点击修改checkbox的选中项
3. 获得checkbox中的选中值
//获取多选框 checkbox=$("#agentinfo input[name='veri[]']"); //定义一个字符串拼接所得到的值,为了传输方便 var veri_str = ''; checkbox.each(function(){ //判断是否被选中,此处就是我要写这个博客的原因,开始用的$(this).attr('checked')==true判断,但死活 //就是会获取之前通过jquery赋值的值,页面中去掉也是会获得,郁闷的不行,最终神仙帮我搞定。 //要用$(this).is(':checked'),不明白为什么! if($(this).is(':checked')) veri_str+=$(this).val()+',';//拼装字符串 });
相关推荐
EdwardSiCong 2020-11-23
85477104 2020-11-17
hhanbj 2020-11-17
81427005 2020-11-11
seoppt 2020-09-13
honeyth 2020-09-13
WRITEFORSHARE 2020-09-13
84483065 2020-09-11
momode 2020-09-11
85477104 2020-08-15
83510998 2020-08-08
82550495 2020-08-03
tthappyer 2020-08-03
84901334 2020-07-28
tthappyer 2020-07-25
TONIYH 2020-07-22
tztzyzyz 2020-07-20
83510998 2020-07-18
81463166 2020-07-17