jquery复选框multipile disable

时间:2018-04-02 00:26:05

标签: javascript jquery html

我有三个复选框。我想要做的是当我点击一个复选框时,该特定复选框应该禁用。

以下是我的复选框代码:

<input type='checkbox'
    name='checkboxStudents'
    id='checkBoxStudents'
    />

1 个答案:

答案 0 :(得分:0)

&#13;
&#13;
$( "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;
&#13;
&#13;