为了账号安全,请及时绑定邮箱和手机立即绑定

bootstrap iCheck插件 全选和获取value值的解决方法

标签:
JQuery

在使用jQuery iCheck 插件的时候遇到了一个问题,就是当我们使用普通的js全选功能无效了。

$("#checkall").click(    function(){        if(this.checked){            $("input[name='checkname']").each(function(){this.checked=true;});        }else{            $("input[name='checkname']").each(function(){this.checked=false;});        }    });


这样来写对默认的checkbox框没问题,但是当使用iCheck 插件后将无效。

那么该怎么解决呢?

最后是在stackoverflow 找到的解决方法:

地址是这里: http://stackoverflow.com/questions/17820080/function-select-all-and-icheck

 


//全选获取数值  var checkAll = $('input.all');  var checkboxes = $('input.check');  checkAll.on('ifChecked ifUnchecked', function(event) {    if (event.type == 'ifChecked') {      checkboxes.iCheck('check');    } else {      checkboxes.iCheck('uncheck');    }  });  checkboxes.on('ifChanged', function(event){    if(checkboxes.filter(':checked').length == checkboxes.length) {      checkAll.prop('checked', 'checked');    } else {      checkAll.removeProp('checked');    }    checkAll.iCheck('update');  });



在解决了全选问题后,又遇到了一个新的问题,获取选中的checkbox的value的时候,使用:$(this).attr('checked');获取不到值了~,蛋疼。

最后几经Google搜索,还是在stackoverflow 找到了启发,判断checkbox的布尔值,使用 :$(this).is(':checked');

最后代码的解决方法如下:

$("#manager_click").parent().siblings(".btn-primary").click(function(){  // var url = $(this).attr('data-url');  var str="";  var ids="";  $("#manager_table td.check-mail input").each(function(){    if(true == $(this).is(':checked')){      str+=$(this).parent().parent().siblings(".mail-ontact").text()+",";    }  });  if(str.substr(str.length-1)== ','){    ids = str.substr(0,str.length-1);  }  console.log(str);  console.log(ids);});










点击查看更多内容
TA 点赞

若觉得本文不错,就分享一下吧!

评论

作者其他优质文章

正在加载中
  • 推荐
  • 评论
  • 收藏
  • 共同学习,写下你的评论
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦
今天注册有机会得

100积分直接送

付费专栏免费学

大额优惠券免费领

立即参与 放弃机会
意见反馈 帮助中心 APP下载
官方微信

举报

0/150
提交
取消