我想根据student.student_type
我在ajax调用后获得的学生是json对象的值设置复选框之一,并且student.student_type
可以是0、1、2和3之间的一个,其中0 =>常规,1 =>通信等等.
<input id="student_type_" type="checkbox" value="Regular" />Regular
<input id="student_type_" type="checkbox" value="Correspondence" />Correspondence
<input id="student_type_" type="checkbox" value="Exchange"/>Exchange
<input id="student_type_" type="checkbox" value="Dual" />Dual
由于生成的 html 中所有复选框的 id 都相同,我无法决定如何操作。有什么方法可以使用复选框的值来实现该目的?请帮忙。