jquery遍历checkbox介绍

这篇文章主要是对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)

您可能感兴趣的文章:

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wdyfwy.html