jquery遍历checkbox介绍

checkbox 全选\全部取消
$("#ChkAll").click(function(){
    $("#divContent input[type='checkbox']").attr("checked",$(this).attr("checked"));
});

获取选中的checkbox的value值:
var arrChk=$("input[name='chk_list'][checked]");
    $(arrChk).each(function(){
       window.alert(this.value);                       
    });
});


$("#checkbox_id").attr("checked"); //获取一个CheckBox的状态(有没有被选中,返回true/false)

$("#checkbox_id").attr("checked",true); //设置一个CheckBox的状态为选中(checked=true)

若文章对您有帮助,帮忙点个赞!

0
-3
发布时间 2014-02-21 12:26:38
0 条回复(回复会通过微信通知作者)
点击加载更多评论
登录 后再进行评论
(微信扫码即可登录,无需注册)