Posted in Javascript onFebruary 21, 2014
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介绍
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@