使用答案检查特定复选框

时间:2016-11-03 21:51:59

标签: javascript jquery html checkbox multiple-choice

我已经对Stack Overflow进行了大量研究,试图回答这个问题,但大多数答案都是具体回答这个问题。

我试图在选择答案后锁定问题并告诉用户问题是对还是错。

我对多个复选框样式问题的解决方案是在选择答案后有一个“确认”按钮。在这种情况下,我为我构建了一个通用函数来传递答案并为我绘制映射。但是,我正在努力为多个复选框提出解决方案。

解决方案必须围绕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):&nbsp;<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 个答案:

答案 0 :(得分:0)

今天早上我能够拿出答案。

我的问题是关于这个循环,我循环通过答案,我通过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

我的解决方案是迭代选中哪个复选框并返回已检查的组合索引并将其与答案进行比较。

E.G。我通过&#39; 23&#39;他们检查&#39; 1&#39;和&#39; 4&#39;,&#39; 14&#39; !=&#39; 23&#39;,所以不正确。

$("#"+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