我有三个复选框。我想要做的是当我点击一个复选框时,该特定复选框应该禁用。
以下是我的复选框代码:
<input type='checkbox'
name='checkboxStudents'
id='checkBoxStudents'
/>
答案 0 :(得分:0)
$( "input[name='checkboxStudents']").click(function(event){
$(this).prop('disabled', true);
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
one <input type='checkbox'
name='checkboxStudents'
id='checkBoxStudents1' />
two <input type='checkbox'
name='checkboxStudents'
id='checkBoxStudents2' />
three <input type='checkbox'
name='checkboxStudents'
id='checkBoxStudents3' />
&#13;