用parent获取到了question-answer
$(".question-answer").find("input[type='radio']").each(function() {
if(res.Subject.RightAnswers.RightAnswer == $(this).val()) {
$(this).parent().next().addClass('correctAnswer');
$(this).iCheck('check');
$("input:radio").iCheck('disable');
}
})