1 回答
TA贡献1799条经验 获得超6个赞
这是适合您的基本工作代码。玩一玩它以获得您想要的结果。祝您编码愉快!
var counter = 10; //Time counter
var questionsCount = 0; //Questions counter
//Questions array
var questions = [
"Question 1","Question 2","Question 3"
]
questionDivId = document.getElementById('question');
setInterval(function () {
counter--;
if (counter >= 0) {
id = document.getElementById('count');
id.innerHTML = counter;
}
if (counter === 0) {
id.innerHTML = 'Times Up!';
counter = 10;
questionsCount++;
}
//To check if all questions are completed or not
if (questionsCount === questions.length){
questionDivId.innerHTML = "Well Played! Game is over";
id.innerHTML = "";
} else{
questionDivId.innerHTML = questions[questionsCount];
}
}, 1000);
//To go to the next question
function goToNextQuestion() {
questionsCount++;
counter = 10;
}
<div>
<h1 id="question"></h1>
<h1 id="count"></h1>
<button onclick="goToNextQuestion()">Next</button>
</div>
添加回答
举报