Jquery checkbox 遍历
Posted 思考的大腿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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)
以上是关于Jquery checkbox 遍历的主要内容,如果未能解决你的问题,请参考以下文章
jquery$find(":checkbox").each(遍历的时候怎么去判断是不是被选中
JQuery中的.find(':checkbox').attr('checked',true);find()有遍历所有的意思吗