- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我无法编写一个循环来计算我为我的 wordpress 网站创建的测验的分数。
测验样式是“将 A 列中的项目与 B 列中的项目进行匹配”。
B 列项目使用选择元素来匹配 A 列中的相应项目。
我能想到的最好办法是像这样手动将每个选定的答案添加在一起..
html
<select id="testValues1">
<option value="right">a</option>
<option value="wrong">b</option>
<option value="wrong">c</option>
</select>
<select id="testValues2">
<option value="wrong">a</option>
<option value="right">b</option>
<option value="wrong">c</option>
</select>
<select id="testValues3">
<option value="wrong">a</option>
<option value="wrong">b</option>
<option value="right">c</option>
</select>
<button type="button" onclick="finalScore()">Submit</button>
<div id="scoreDisplay">score goes here</div>
JavaScript
<script>
function finalScore(){
var i = 0;
var select1 = document.getElementById("testValues1");
var answer1 = select1.options[select1.selectedIndex].value;
if(answer1 == "right"){
i++;
}
var select2 = document.getElementById("testValues2");
var answer2 = select2.options[select2.selectedIndex].value;
if(answer2 == "right"){
i++;
}
var select3 = document.getElementById("testValues3");
var answer3 = select3.options[select3.selectedIndex].value;
if(answer3 == "right"){
i++;
}
document.getElementById("scoreDisplay").innerHTML = i;
}
</script>
上面的效果很好,但我想添加更多这样的测验,有些测验有超过 3 个可能的问题/匹配。
我一直无法编码的想法..
JavaScript
function finalScore() {
var answersCorrect = 0;
var answersCounter = 0;
foreach "select" {
var rightOrWrong = "get value";
if (rightOrWrong = right) {
answersCorrect++
}
answersCounter++;
}
var finalScore = Math.floor((answersCorrect / answersCounter) * 100));
document.getElementById("scoreDisplay").innerHTML = finalScore;
}
解决方案不一定是纯 javascript,如果不可能的话,但我对 jquery 的精通程度更低。
最佳答案
我相信以下功能将使您的测验代码更易于重用。在计算正确答案的百分比时,它会考虑问题的数量。为了添加问题,您只需将类问题添加到将成为问题的每个选择语句中。
现场演示:http://codepen.io/larryjoelane/pen/ZQrKjY
function finalScore(){//begin function
//initialize the correct variable
var correct = 0;
var selectValue;
//store the collection of elements with the class name question
var questions = document.getElementsByClassName("question");
//the number of questions(elements with a class name of question)
var numOfQuestions = questions.length;
//loop through the collection of elements with a question class
for(var i = 0; i < questions.length; i++ ){//begin for loop
//get the value of the select element
selectValue = questions[i].options[questions[i].selectedIndex].value;
//if the value equals right
if(selectValue === "right"){//begin if then
//increment the correct variable
correct++;
}//end if then
}//end for loop
//get the percentage of correct answers
document.getElementById("scoreDisplay").innerHTML = (100/numOfQuestions) * correct;
}//end function
HTML(注意在每个选择语句中添加类问题):
<select class ="question" id="testValues1">
<option value="right">a</option>
<option value="wrong">b</option>
<option value="wrong">c</option>
</select>
<select class="question" id="testValues2">
<option value="wrong">a</option>
<option value="right">b</option>
<option value="wrong">c</option>
</select>
<select class="question" id="testValues3">
<option value="wrong">a</option>
<option value="wrong">b</option>
<option value="right">c</option>
</select>
<button type="button" onclick="finalScore()">Submit</button>
<div id="scoreDisplay">score goes here</div>
关于Javascript 测验 - 如何计算多个选择元素中答案的分数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34959864/
(function() { main(); function main() { jQuery(document).ready(function($) {
所以我必须为我们的类(class)软件设计制作一个 GUI,我们正在为 children 制作一个游戏来练习乘法表。到目前为止,当您执行一次测试或练习时它工作正常,但是当您进行第二次运行时,它会出错。
我刚开始学习 python,想做一些琐事。基本上,我想从列表中随机询问一个问题,然后使用“输入”运算符来判断用户输入的 Y/N 是否正确。我坚持确定如何检查它是否正确。也许我的(不正确的)代码可以更好
我目前正在做一个暑期实习项目,我必须制作一个不经意的 DNS 翻译服务器。我不会在这里详细讨论被忽视的部分,但我会解释我的程序的架构。 有一个服务器端接收混淆的请求并发回一个它自己无法理解的答案。 在
我想用ajax请求翻译单词到谷歌翻译 如果我使用 curl,它会像: curl_init("http://translate.google.com/translate_a/t?client=t&tex
这是我运行dig www.google.com时的答案部分: ;; ANSWER SECTION: www.google.com. 108 IN A 74
我在ES上有以下简单数据: curl -XPUT localhost:9200/dt/art/1 -d '{ "age": 77 }' curl -XPUT localhost:9200/dt/art
我从编码开始,我有一个多维数组的示例。但它没有给出预期的答案。 我只得到“C”,我期待“JohnnyCash:Live at Folsom Prison”。出了什么问题? var music = []
我们有一个应用程序与 Crashlytic 和 Answers 配合得很好。我们需要为这个应用程序做一个不同的风格。因此,我们的 Gradle 编译工作正常,并为两个不同的品牌制作了两个不同的 APK
我正在尝试从数据库获取歌曲列表。 我在查询行中发送一个 ID 数组(永久链接),并且我希望返回值的顺序与我在数组中给出的顺序相同。有没有办法做到这一点? function getByPermalink
我有一个表单可以输入这样的值 test 有没有办法用jquery改变输入类型 我基本上想把这个添加到输入类型中 data-slider="true" data-sl
好吧,我距离数学高手还很远。哎呀,我记住了足够多的高中代数,可以拼凑出任何有效的公式,这对我来说是一个胜利。因此,如果您注意到这里有一个不必要的长或令人困惑的公式,那就可以解释了。 但是,正如人们可以
所以我的问题有点令人困惑,但仍然如此。我从外部源获取一个由 8 个字符串组成的数组,其中所有字符串都包含 double 值。这些值通常为小数点后 4 位: 12345.5678 我想做的是将其转换为小
我成功地构建了一个函数来提示用户提出问题,然后是随机排列的答案选项。但是,由于答案选择现在是随机的,python 如何识别用户输入(数字:1、2、3 或 4)以获得“正确”答案? import ran
我正在尝试使用蛮力来回答这个问题,这样我就可以理解发生了什么: https://www.interviewcake.com/question/java/product-of-other-numbers
尝试使用刚刚宣布的 Answers OSX平台框架: pod 'Fabric' pod 'Answers' pod 'Crashlytics' #import #import #import [
在我添加的页面上检索忘记的用户名 步骤 1) 输入电子邮件地址(通过电子邮件获取帐户) 第 2 步)验证安全问题(他们提供答案,我对其进行验证) 第 3 步)向他们发送带有用户名的电子邮件 第 2 步
已关闭。这个问题是 off-topic 。目前不接受答案。 想要改进这个问题吗? Update the question所以它是on-topic用于堆栈溢出。 已关闭10 年前。 Improve th
在我的测试中,我需要模拟一种情况,当使用实体管理器(em)将新对象保存到数据库中时,在此过程中,该对象的id属性设置为数据库中该行的自动递增ID。我想将该id属性设置为我自己的值,以便稍后在测试中进行
我有这个代码。调用askToContinue() 方法来询问用户是否要继续,但我的问题是它只是忽略选择并重新启动程序,无论我输入什么。我在代码中遗漏了什么导致它忽略我的选择? public class
我是一名优秀的程序员,十分优秀!