Проверка конкретных флажков с ответами
Я уже провел много исследований по переполнению стека, чтобы попытаться ответить на этот вопрос, но большинство ответов являются конкретными, чтобы ответить на этот вопрос.
Я пытаюсь заблокировать вопросы после того, как ответы выбраны, и сообщить пользователю, является ли вопрос правильным или неправильным.
Моим решением для вопроса в стиле Multiple Checkbox было наличие кнопки "Подтвердить" после того, как они выбрали ответы. В этом случае я построил обобщенную функцию, чтобы передать ответы и сопоставить их для меня. Тем не менее, я изо всех сил пытаюсь найти решение для нескольких флажков.
Решение должно вращаться вокруг javascript/jquery, поскольку у меня нет контроля над HTML-кодом, сгенерированным из этого построителя форм, который я использую.
TL; DR
Мое решение ниже не может правильно распознать неправильные ответы на вопрос 14, оно должно появиться только "Правильно!" если выбраны опции 3 и 4.
В настоящее время он отображается правильно, если они выбирают 3 и любой другой вариант.
Для работы с версией: Fiddle
HTML:
<div id="q14" class="q required highlight">
<a class="item_anchor" name="ItemAnchor25"></a>
<span class="question top_question">14. Life policy purchase evaluations include which of the following (choose all that apply): <b class="icon_required" style="color:#FF0000">*</b></span>
<table class="inline_grid">
<tbody><tr>
<td><input type="checkbox" name="RESULT_CheckBox-25" class="multiple_choice" id="RESULT_CheckBox-25_0" value="CheckBox-0" readonly=""><label for="RESULT_CheckBox-25_0">Insured’s credit rating</label></td>
</tr>
<tr>
<td><input type="checkbox" name="RESULT_CheckBox-25" class="multiple_choice" id="RESULT_CheckBox-25_1" value="CheckBox-1" readonly=""><label for="RESULT_CheckBox-25_1">Employment history</label></td>
</tr>
<tr>
<td><input type="checkbox" name="RESULT_CheckBox-25" class="multiple_choice" id="RESULT_CheckBox-25_2" value="CheckBox-2" readonly=""><label for="RESULT_CheckBox-25_2">Medical records</label></td>
</tr>
<tr>
<td><input type="checkbox" name="RESULT_CheckBox-25" class="multiple_choice" id="RESULT_CheckBox-25_3" value="CheckBox-3" readonly=""><label for="RESULT_CheckBox-25_3">Insurer’s credit rating</label></td>
</tr>
</tbody></table>
</div>
Javascript:
$(document).ready(function(){
var content = document.body.textContent || document.body.innerText;
var hasText = content.indexOf("10. What is the minimum initial investment for a non-retirement investor in this program?")!==-1;
//page 4 questions
if(hasText){
var correctNumber = [1, 0, 0, 1, 23, 1];
createQuiz(correctNumber);
}
//Dynamically grabs questions, answers, and creates alert boxes for each section of radio buttons
function createQuiz(correctNumber){
$("span.question").each(function(i){
var question = $(this).parent("div").find($(".multiple_choice")).attr("name"); //get the question name attribute
var parentDiv = $(this).parent("div").attr("id"); //get the parent div id
//set the alert box HTML
$(this).parent("div").after("<br><br><br><div id='"+parentDiv+"_success' class='alert alert-success'><strong>Correct!</strong></div><div id='"+parentDiv+"_fail' class='alert alert-danger'><strong>Incorrect!</strong></div>");
$("#"+parentDiv+"_fail").hide(); //hide alert box
$("#"+parentDiv+"_success").hide();//hide alert box
if($(this).parent("div").find($(".multiple_choice")).attr("type")=='radio'){
$("input[name='"+question+"']").on("click keypress", function(){
$("input[name='"+question+"']").prop('disabled', true);
$("input[name='"+question+"']:radio:not(:checked)").attr('disabled', true);
$(this).attr('disabled', false);
if($("#"+question+"_"+correctNumber[i]).is(':checked')){
$("#"+parentDiv+"_success").show();
$("#"+parentDiv+"_fail").hide();
}
else {
$("#"+parentDiv+"_success").hide();
$("#"+parentDiv+"_fail").show();
}
$('.tooltip').tooltipster({
contentAsHTML: true,
maxWidth: '480',
animation: 'grow',
side: ['right', 'top', 'bottom', 'left']
});
}); //end on click/keypress
} else if ($(this).parent("div").find($(".multiple_choice")).attr("type")=='checkbox'){
$("#"+parentDiv+"_success").before("<button id='"+parentDiv+"_confirm' style='width:200px; left:16px; position:relative;' type='button' value='Confirm'>Confirm</button>");
$("#"+parentDiv+"_confirm").on("click keypress", function(){
$("input[name='"+question+"']").prop('readonly', true);
var answers = correctNumber[i].toString().split("");
for(p=0; p < answers.length; p++){
var selected = [];
$("input[name='"+question+"']").filter(":checked").each(function() {
if(question+"_"+answers[p] == $(this).attr('id') && $("input[name='"+question+"']").filter(":checked").length == answers.length){
$("#"+parentDiv+"_success").show();
$("#"+parentDiv+"_fail").hide();
}
else {
$("#"+parentDiv+"_success").hide();
$("#"+parentDiv+"_fail").show();
}
});
// if($("#"+question+"_"+answers[p]).is(':checked') && $("input[name='"+question+"']").filter(":checked").length == answers.length){
// $("#"+parentDiv+"_success").show();
// $("#"+parentDiv+"_fail").hide();
// }
// else {
// $("#"+parentDiv+"_success").hide();
// $("#"+parentDiv+"_fail").show();
// }
$('.tooltip').tooltipster({
contentAsHTML: true,
maxWidth: '480',
animation: 'grow',
side: ['right', 'top', 'bottom', 'left']
});
} //end for loop
}); //end on click/keypress
} //end outer if
}); //end outer each
} //end createQuiz function
}); //end document ready
1 ответ
Я смог придумать ответ сегодня утром.
Моя проблема была в этом для цикла for, я перебираю ответы, которые я пропустил 23, если я выбрал 2 и 4 (или в скрипке, 1 и 3). Затем он ответил как правильный, потому что на последней итерации он обнаружит, что последний флажок был проверен и 2 флажка были проверены.
for(p=0; p < answers.length; p++){
var selected = [];
$("input[name='"+question+"']").filter(":checked").each(function() {
if(question+"_"+answers[p] == $(this).attr('id') && $("input[name='"+question+"']").filter(":checked").length == answers.length){
$("#"+parentDiv+"_success").show();
$("#"+parentDiv+"_fail").hide();
}
else {
$("#"+parentDiv+"_success").hide();
$("#"+parentDiv+"_fail").show();
}
});
} //end for loop
Мое решение состояло в том, чтобы выполнить итерацию, с помощью которой отмечены флажки, и вернуть объединенный индекс, который был проверен, и сравнить его с ответами.
Например, я пропускаю "23", они проверяют "1" и "4", "14"!= "23", поэтому неверно.
$("#"+parentDiv+"_confirm").on("click keypress", function(){
$("input[name='"+question+"']").prop('readonly', true);
var answers = correctNumber[i];
var input = "";
$("input[name='"+question+"']").each(function(t){
if($(this).is(':checked')){
input = ""+input+t;
}
});
if(input == answers){
$("#"+parentDiv+"_success").show();
$("#"+parentDiv+"_fail").hide();
}
else {
$("#"+parentDiv+"_success").hide();
$("#"+parentDiv+"_fail").show();
}
}); //end on click/keypress