【发布时间】:2012-12-23 00:57:55
【问题描述】:
我列出问题和选项的功能不起作用。我不断收到错误代码document.getElementById(...) 为空或不是对象。语法似乎是正确的。
我希望问题和选择出现在同一个 div 中。我不想一次列出我所有的问题。当用户完成一个问题时,他们会继续下一个问题,该问题将出现在与第一个问题完全相同的 div 中,直到所有问题都被看到。
<script>
var questions = new Array();
questions[0] = 'Is there a difference between a jungle and a rain forest?'
questions[1] = 'What is the world\'s most common religion?',
questions[2] = 'What is the second largest country (in size) in the world?';
var choices = new Array();
choices[0] = ['No difference', 'Some difference', 'Completely different'],
choices[1] = ['Christianity', 'Buddhism', 'Hinduism', 'Islam'],
choices[2] = ['USA', 'China', 'Canada', 'Russia'];
var answers = new Array();
answers[0] = ['Some difference'],
answers[1] = ['Christianity'],
answers[2] = ['Canada'];
var score = 0;
i= 0;
var listQuestion = function(){
if( i < questions.length ){
document.getElementById("myDiv1").innerHTML = '<p>'+questions[i]+'</p>';
for (k=0; k<choices[i].length; k++){
document.getElementById("myDiv2").innerHTML ='<p><input type = "radio" name = "questionchoice">'+choices[i][k]+'</p>';
}
document.getElementById("myDiv3").innerHTML = '<p><button onClick = "getRadioValue()">Check</button></p> <br>';
};
};
var getRadioValue = function(){
for ( var h = 0; h < document.getElementsByName('questionchoice').length; h++ ){
var value = '';
if (document.getElementsByName('questionchoice')[h].checked==true){
value = document.getElementsByName('questionchoice')[h].value;
score+=1
}
}
if (value== answers[i]){
document.getElementById("myDiv4").innerHTML ="That is correct. </br><button input type = 'submit' onClick = 'loadContent()'> Next Question</button>";
}
else {
document.getElementById("myDiv4").innerHTML ="That is incorrect. </br><button input type = 'submit' onClick = 'loadContent()'> Next Question</button>";
}
i++;
};
var whatIsScore = function(){
return score;
}
window.onload = listQuestion();
</script>
</head>
<body>
<div id="myDiv1"></div>
<div id="myDiv2"></div>
<div id="myDiv3"></div>
<div id="myDiv4"></div>
</body>
【问题讨论】:
-
你有任何 HTML 来配合它吗?您应该在页面上的某个位置至少有四个
<div>元素具有 id 值; myDiv1,myDiv2,myDiv3,myDiv4。 -
嗨,戴夫,我愿意。见下文。
-
您能否将您的完整来源添加到问题中,以便我们重新创建您的错误。它找不到您的元素,而您正试图访问 null 对象的 innerHTML 属性。
标签: javascript for-loop innerhtml getelementbyid radio-group