- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在 CodePen 中的笔的链接 - http://codepen.io/PartTimeCoder/pen/WwMxEX?editors=0010
Javascript 在这里:
function randomNum(digits) {
return Math.floor(Math.pow(10, digits - 1) + Math.random() * 9 * Math.pow(10, digits - 1));
}
function askQuestion(digits) {
$(".result").html("");
var factor1 = randomNum(digits);
var factor2 = randomNum(digits);
var correctanswer = factor1 * factor2;
var answer = parseInt($(".answer").val(), 10);
console.log(correctanswer);
$(".question").html(factor1 + " × " + factor2);
var score = 0;
//Problem Starts Here
$(".check").click(function() {
if (correctanswer == answer) {
$(".result").html("Correct");
score += 1;
$(".score").html(score);
askQuestion(digits);
} else {
$(".result").html("Wrong");
score -= 1;
$(".score").html(score);
}
});
//Problem Ends Here
}
$(document).ready(function() {
$(".answer").hide();
$(".check").hide();
var digits = 0;
$(".digits-1").click(function() {
digits += 1;
});
$(".digits-2").click(function() {
digits += 2;
});
$(".digits-3").click(function() {
digits += 3;
});
$(".btn").click(function() {
$(".btn").hide();
$(".answer").show();
$(".check").show();
askQuestion(digits);
});
});
在评论之间是我认为的问题所在。例如,当它询问 4 x 9 而我输入 36 时,它仍然将其标记为错误。我不知道为什么要这样做。起初我虽然输入的信息可能仍然是一个字符串,所以我对它使用了 parseInt 但它仍然没有用。感谢所有帮助。提前致谢!
最佳答案
问题是您在 answer
变量中缓存了 $('.answer')
元素的初始值。当您执行 $('.answer').val()
时,它会保存当时的内容,因此如果用户之后更改他们的答案,它不会不会反射(reflect)在您的变量中。你想要做的是这样的:
// Rest of your code above
var answer = $(".answer");
console.log(correctanswer);
$(".question").html(factor1 + " × " + factor2);
var score = 0;
//Problem Starts Here
$(".check").click(function() {
// Don't check what is in the input until you're ready to use the value.
if (correctanswer == parseInt(answer.val(), 10)) {
$(".result").html("Correct");
score += 1;
$(".score").html(score);
askQuestion(digits);
} else {
$(".result").html("Wrong");
score -= 1;
$(".score").html(score);
}
});
关于javascript - 我在 Javascript 中的 askQuestion() 函数总是将答案标记为错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36535779/
我正在尝试创建一个 Java 数学培训程序。我有一个 Javascript 的工作版本,你们中的一些人已经帮助我将它转换为 Java。它应该问用户一个困难(然后对问题中的每个数字使用该数量的数字)。然
我在 CodePen 中的笔的链接 - http://codepen.io/PartTimeCoder/pen/WwMxEX?editors=0010 Javascript 在这里: function
我不想创建带有输入的表单。 你可以在里面输入你想要的,你也可以很容易地删除它。 就像 stackoverflow 的提问标签 block 一样。 我该怎么办! what should i do 最佳答
Tkinter中messagebox的askquestion()和askyesno()函数有什么区别? 我在这个网站上找到了这两个函数:http://infohost.nmt.edu/tcc/help
我是一名优秀的程序员,十分优秀!