我有一个CheckBoxList
有5个固定项目。当选中第一个项目时,我希望其余部分被禁用 - 仅限客户端。
你可以帮帮我吗?
答案 0 :(得分:0)
您考虑使用5个CheckBox
控件....
答案 1 :(得分:0)
你可以使用nextAll和do(这假定jquery版本> 1.6):
<div id='check'>
<input type='checkbox' >
<input type='checkbox' >
<input type='checkbox' >
<input type='checkbox' >
<input type='checkbox' >
</div>
$('#check input:checkbox:first').click(function(){
if($(this).is(':checked')){
$(this).nextAll('input:checkbox').prop('disabled', true);
}else{
$(this).nextAll('input:checkbox').removeProp('disabled');
}
});