Jquery checkbox 遍历

来源:互联网 发布:mac 远程工具 编辑:程序博客网 时间:2024/06/05 22:42

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 0