29.(jquery) checkboxlist选项框的禁用以及取消禁用

1.禁用checkboxlist每个选项,

$("#<%= this.cblStudentName.ClientID%> :checkbox").each(function(){

$(this).attr("disabled","disabled");

});

2.取消禁用checkboxlist每个选项,

$("#<%= this.cblStudentName.ClientID%> :checkbox").each(function(){

$(this).removeAttr("disabled");

});

29.(jquery) checkboxlist选项框的禁用以及取消禁用

上一篇:Codeforces Round #735 (Div. 2) A~D


下一篇:sharding-jdbc 分片策略(行分片策略踩坑笔记)