- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这听起来像是我之前问过的问题,但它只得到了部分回答。所以我想从我提出的问题开始。然后,一旦到达最后一个问题(#5),它就会返回到第一个问题(#1),当到达起始问题时,它将停止。我尝试在以下代码中执行此操作,但它不起作用。我今年 11 岁,大约 9 个月前开始编程。
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Are you smarter than a 5th Grader?!!</title>
<link rel="stylesheet" href="style.css">
</head>
<body onload="starter()" bgcolor="lightblue">
<h1><marquee><font color="red">Make Trivia Great Again!</font></marquee></h1>
<h2><em><center>Are You Smater Than a 5th Grader?</center></em></h2>
<button onclick="sc()">Start</button>
<br>
<p id="demo"> </p>
<div id="result"></div>
<button onclick="reset()">Reset Score</button>
<script>
function starter() {
setTimeout("clickCounter()", 100)
setTimeout("minusCounter()", 101)
}
function reset() {
setTimeout("clickCounter()", 100)
localStorage.clickcount = -1
}
function clickCounter() {
if (typeof(Storage) !== "undefined") {
if (localStorage.clickcount) {
localStorage.clickcount = Number(localStorage.clickcount) + 1;
} else {
localStorage.clickcount = 0;
}
document.getElementById("result").innerHTML = "Score:" + localStorage.clickcount
} else {}
}
function minusCounter() {
if (typeof(Storage) !== "undefined") {
if (localStorage.clickcount) {
localStorage.clickcount = Number(localStorage.clickcount) - 1;
} else {
localStorage.clickcount = 0;
}
document.getElementById("result").innerHTML = "Score:" + localStorage.clickcount
} else {}
}
if (!("scramble" in Array.prototype)) {
Object.defineProperty(Array.prototype, "scramble", {
enumerable: false,
value: function() {
var o, i, ln = this.length;
while (ln--) {
i = Math.random() * (ln + 1) | 0;
o = this[ln];
this[ln] = this[i];
this[i] = o;
}
return this;
}
});
}
var quiz = [{
"question": "When was the first apple computer made?",
"choices": ["1904", "1976", "1978", "2004"],
"correct": ["1976"]
}, {
"question": "Who is the founder of Microsoft?",
"choices": ["Bill Gates", "Steve Jobs", "Steve Wozniak", "Martin Shaba"],
"correct": "Bill Gates"
}, {
"question": "What was your first dream?",
"choices": ["8 bits", "64 bits", "1024 bits"],
"correct": "8 bits"
}, {
"question": "The C programming language was developed by?",
"choices": ["Brendan Eich", "Dennis Ritchie", "Guido van Rossum"],
"correct": "Dennis Ritchie"
}, {
"question": "What does CC mean in emails?",
"choices": ["Carbon Copy", "Creative Commons", "other"],
"correct": "Carbon Copy"
}, {
"question": "What is the full for of IP",
"choices": ["Internet provider", "Intenet Port", "Other", "Internet Protocol"],
"correct": "Other"
}]
function stop() {
alert("stopped")
}
function setter() {
for (x = 1; x < 7; x++) {
uc()
}
}
function sc() {
var q = prompt("start question #", "")
if (q >= 6) {
alert("please pick a valid question")
sc()
} else if (q <= 5 && q > 0) {
ec()
} else if (q == 0) {
alert("please pick a valid question")
sc()
return;
} else {
alert("Please pick a valid question"), sc()
}
function ec() {
for (x = q; x < 7; x++) {
if (x == 6) {
setter()
} else if (x == x) {
return;
} else {
uc()
}
}
function uc() {
quiz.forEach(q => q.choices.scramble());
var ans = ""
function myFunction(item, index) {
ans += "\n[" + (index + 1) + "]: " + item;
}
quiz[x].choices.forEach(myFunction);
var y = prompt(quiz[x].question + "\nYour anwser is:" + ans);
if (y == quiz[x].correct) {
alert("Correct!")
clickCounter()
} else if (y == "Cancel") {
alert("canceled")
page.reload()
} else {
alert("Wrong! Please Try Again.");
repeat()
}
function repeat() {
quiz.forEach(q => q.choices.scramble());
var ans = ""
function myFunction(item, index) {
ans += "\n[" + (index + 1) + "]: " + item;
}
quiz[x].choices.forEach(myFunction);
var y = prompt(quiz[x].question + "\nYour anwser is:" + ans);
if (y == quiz[x].correct) {
alert("Correct!,Good Job")
clickCounter()
} else if (y == "Cancel") {
alert("canceled")
} else {
alert("Sorry! \nThe right answer is " + quiz[x].correct);
}
}
}
}
}
</script>
</body>
</html>
最佳答案
对于一个 11 岁的 child 来说,这是非常令人印象深刻的编码。您在这里面临的问题是函数和变量范围。函数在不应该的情况下被嵌套在其他函数中。此外,当您使用在其他函数中使用的变量时,您必须全局声明它(尽管有时这可能是一个坏主意)。
从这里开始了解有关范围的更多信息:https://www.w3schools.com/js/js_scope.asp
继续编码:)
您的代码已修复如下:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Are you smarter than a 5th Grader?!!</title>
<link rel="stylesheet" href="style.css">
</head>
<body onload="starter()" bgcolor="lightblue">
<h1><marquee><font color="red">Make Trivia Great Again!</font></marquee></h1>
<h2><em><center>Are You Smater Than a 5th Grader?</center></em></h2>
<button onclick="sc()">Start</button>
<br>
<p id="demo"> </p>
<div id="result"></div>
<button onclick="reset()">Reset Score</button>
<script>
function starter() {
setTimeout("clickCounter()", 100)
setTimeout("minusCounter()", 101)
}
function reset() {
setTimeout("clickCounter()", 100)
localStorage.clickcount = -1
}
function clickCounter() {
if (typeof(Storage) !== "undefined") {
if (localStorage.clickcount) {
localStorage.clickcount = Number(localStorage.clickcount) + 1;
} else {
localStorage.clickcount = 0;
}
document.getElementById("result").innerHTML = "Score:" + localStorage.clickcount
} else {}
}
function minusCounter() {
if (typeof(Storage) !== "undefined") {
if (localStorage.clickcount) {
localStorage.clickcount = Number(localStorage.clickcount) - 1;
}
else {
localStorage.clickcount = 0;
}
document.getElementById("result").innerHTML = "Score:" + localStorage.clickcount
} else {
}
}
if (!("scramble" in Array.prototype)) {
Object.defineProperty(Array.prototype, "scramble", {
enumerable: false,
value: function() {
var o, i, ln = this.length;
while (ln--) {
i = Math.random() * (ln + 1) | 0;
o = this[ln];
this[ln] = this[i];
this[i] = o;
}
return this;
}
});
}
var quiz = [{
"question": "When was the first apple computer made?",
"choices": ["1904", "1976", "1978", "2004"],
"correct": ["1976"]
}, {
"question": "Who is the founder of Microsoft?",
"choices": ["Bill Gates", "Steve Jobs", "Steve Wozniak", "Martin Shaba"],
"correct": "Bill Gates"
}, {
"question": "What was your first dream?",
"choices": ["8 bits", "64 bits", "1024 bits"],
"correct": "8 bits"
}, {
"question": "The C programming language was developed by?",
"choices": ["Brendan Eich", "Dennis Ritchie", "Guido van Rossum"],
"correct": "Dennis Ritchie"
}, {
"question": "What does CC mean in emails?",
"choices": ["Carbon Copy", "Creative Commons", "other"],
"correct": "Carbon Copy"
}, {
"question": "What is the full for of IP",
"choices": ["Internet provider", "Intenet Port", "Other", "Internet Protocol"],
"correct": "Other"
}];
function stop() {
alert("stopped")
}
function setter() {
for (x = 1; x < 7; x++) {
uc();
}
}
var q;
function sc() {
q = prompt("start question #", "")
if (q >= 6) {
alert("please pick a valid question")
sc()
} else if (q <= 5 && q > 0) {
ec()
} else if (q == 0) {
alert("please pick a valid question")
sc()
return;
} else {
alert("Please pick a valid question"), sc()
}
}
var x;
function ec() {
console.log('ec');
for (x = q; x < 7; x++) {
if (x == 6) {
setter()
//} else if (x == x) {
// return;
} else {
uc()
}
}
}
function uc() {
console.log('uc');
quiz.forEach(q => q.choices.scramble());
var ans = ""
function myFunction(item, index) {
ans += "\n[" + (index + 1) + "]: " + item;
}
quiz[x].choices.forEach(myFunction);
var y = prompt(quiz[x].question + "\nYour anwser is:" + ans);
if (y == quiz[x].correct) {
alert("Correct!")
clickCounter()
} else if (y == "Cancel") {
alert("canceled")
page.reload()
} else {
alert("Wrong! Please Try Again.");
repeat()
}
}
function repeat() {
quiz.forEach(q => q.choices.scramble());
var ans = ""
function myFunction(item, index) {
ans += "\n[" + (index + 1) + "]: " + item;
}
quiz[x].choices.forEach(myFunction);
var y = prompt(quiz[x].question + "\nYour anwser is:" + ans);
console.log(y);
console.log(quiz[x].correct);
if (y == quiz[x].correct) {
alert("Correct!,Good Job")
clickCounter()
} else if (y == "Cancel") {
alert("canceled")
} else {
alert("Sorry! \nThe right answer is " + quiz[x].correct);
}
}
</script>
</body>
</html>
关于Javascript 测验,因此当它达到完整的问题循环时就会停止,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44091902/
我知道这曾经是一个话题,但搜索后我找不到答案 - 也许我的问题太基本了。不过,我正在创建一个 html 测验 - 5 页,分数从一页到下一页,然后在最后评分。 这是我正在尝试使用的代码,但它根本不起作
已结束。此问题正在寻求书籍、工具、软件库等的推荐。它不满足Stack Overflow guidelines 。目前不接受答案。 我们不允许提出寻求书籍、工具、软件库等推荐的问题。您可以编辑问题,以便
我正在做一个简单的 php 问答游戏。我将问题和答案存储在数据库中。我的 tblQuiz 的表结构是这样的: _id, question, answer1, answer2, answer3, cor
我在考试中遇到了这个问题。 以下不正确 javascript 代码的输出是什么?错误是什么? num=0; if (num > 10); { num = num + 10; } alert(n
我在 JavaScript 中验证 4 个问题多项选择测验时似乎遇到了一些问题。现在,如果没有选择任何答案,则会弹出警报,但即使只选择了一个答案,警报也不会弹出。我正在将我的函数作为提交按钮的 onc
我正在尝试使用 JavaScript 构建一个问答游戏。 测验答案存储在变量中,如下所示: var correctAnswer = $('#createCorrectAnswer').val(); 然
下面我做了一个小测验,有 4 个问题,问题 2,3 和 4 被 CSS 隐藏了,但是你可以尝试从 CSS 中删除样式 (".pytja2, .pytja3, .pytja4 { display: no
private void startGame() { System.out.println("Exercises must be completed as quickly as pos
这听起来像是我之前问过的问题,但它只得到了部分回答。所以我想从我提出的问题开始。然后,一旦到达最后一个问题(#5),它就会返回到第一个问题(#1),当到达起始问题时,它将停止。我尝试在以下代码中执行此
愚蠢的问题,但我的教授不回复电子邮件,所以我在这里问。我现在正在复习期末考试,并且正在复习期中考试来学习。现在,这真的很愚蠢,因为我两个月前就答对了这个问题。但对于我的一生来说,现在回想起来,我无法弄
我无法编写一个循环来计算我为我的 wordpress 网站创建的测验的分数。 测验样式是“将 A 列中的项目与 B 列中的项目进行匹配”。 B 列项目使用选择元素来匹配 A 列中的相应项目。 我能想到
为什么选择不正确单选选项时,if语句中的else仍然出现? else 部分只应在未选择单选按钮时出现。真正的结果是下一个问题和可能的答案出现。这是 jsfiddle .我做错了什么? function
我正在尝试为西类牙语类(class)创建测验。我对 JavaScript 经验不多,但对 html 和 CSS 相当精通。我有一个问题,然后是三个带答案的单选按钮。有两个错误答案和一个正确答案。我总共
我正在编写一个允许用户设置个人测验的程序(如记事卡式系统)。参加测验时,用户会在每个问题上计时。虽然答案不会是多项选择,但它们将由用户输入。 有没有一种方法可以让我充分接受那些不是他们第一次设置测验时
我正在尝试根据找到的教程创建一个简单的测验。 http://css-tricks.com/building-a-simple-quiz/ 不幸的是,这让我无法自拔,答案可能非常简单。 我让这个工作完美
最近我遇到了以下测验。想象一下我们有这张 table +--------+ | colors | +--------+ | red | | black | | white | | green
这里的 W3Schools 网站上发布了一个 jQuery 测验... http://www.w3schools.com/quiztest/quiztest.asp?qtest=jQuery 问题#1
我正在写一个简单的在线测验。有四个单选按钮作为选择。最初,脚本仅填充第一个问题的选项。之后,用户应该选择下一个并单击按钮。如果答案与正确的匹配,则总数递增。否则,将加载下一个问题。提交第 10 个问题
我不是 Haskell 程序员,但我对以下问题感到好奇。 非正式函数规范: 令 MapProduct 为一个函数,它采用名为 F 的函数和多个列表。它返回一个列表,其中包含使用每个可能组合中每个列表中
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 6 年前。 Improve this ques
我是一名优秀的程序员,十分优秀!