jquery遍历checkbox介绍
jquery遍历checkbox介绍
发布时间:2016-12-30 来源:查字典编辑
摘要:checkbox全选全部取消$("#ChkAll").click(function(){$("#divContentinput[type='...

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)

推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
相关阅读
网友关注
最新Javascript教程学习
热门Javascript教程学习
编程开发子分类