我做了一个小测验 但我有最后一个问题 单击下一个按钮时,它会检查该值是否未找到。 如果它是真的,它会检查客户选择无线电是否等于配偶正确答案 一个var correctAnswer获得+1。 问题是,在第一个问题上它的工作(检查客户是否真的从答案中选择了一些东西并检查它是否正确) 但是当下一个问题被提出时它不起作用。我试图解决这个问题,但没有闷闷不乐...... 还检查jsfiddle:http://jsfiddle.net/boazmier/ru8Qj/1/ 我试图将checkClientChoice函数放入它没有工作的loadquestion函数
var allQuestions = {
question: {
question0: {
question: "Who is the first Prime Minister of Israel?",
choices: ["David", "Rabin", "Peres", "Bibi"],
correct: "David"
},
question1: {
question: "What Is israel date of birth?",
choices: ["1948", "1958", "1950", "1944"],
correct: "1948"
},
question2: {
question: "What is PhoneGap framework for?",
choices: ["apache", "apps", "server", "client"],
correct: "apps"
}
},
correctAnswer: 0
};
var allquestion = allQuestions["question"];
var calcAnswers =allQuestions["correctAnswer"];
var qNum = 0;
var value;
//function that deploies the question and the choices to the section.
function loadquestions(qNum){
$(".question").text(allquestion["question"+qNum]["question"]); //set the the question to the title
for(var i=0;i<allquestion["question"+qNum]["choices"].length;){
//loops throughout the li's
var cH =(allquestion["question"+qNum]["choices"][i]); // a var that holds text of choice in poistion i
$("label[for=li"+i+"]").text(cH); //define for every label its text
$("#li"+i).attr("value",cH); //define for every input radio its value which is equals to label which is equals to var cH
i++;//count i with +1
}
}
//function that fires when clicked the "next" button and when trigered hides the current question and presents the next one
function checkClientChoice(){
$("#next").click(function(){
value = $("input[type='radio']:checked").val();
if(value == undefined){
alert("Please choose a valid answer");
}
else {
if(allquestion["question0"]["correct"] == value){
alert("correct");
calcAnswers++;
alert(calcAnswers);
qNum++;
loadquestions(qNum);
}
else{
qNum++;
loadquestions(qNum);
}
}
});
};
$(document).ready(function(){
loadquestions(qNum);
checkClientChoice();
});
答案 0 :(得分:4)
好的,我们得到的是:
if(allquestion["question0"]["correct"] == value)
你总是检查第一个问题的答案。你应该把它改成
if(allquestion["question" + qNum]["correct"] == value)
或以其他方式跟踪函数checkClientChoice
中的问题num。