单击选择器以解决多个单选按钮问题

时间:2020-01-24 19:31:26

标签: javascript jquery codepen

我正在尝试进行分数测验,请在此处输入: https://codepen.io/stdobrescu/pen/xxbMbLK

现在我有

var score = 0;
var scoreInt = 0;
$("#score").html(score);

$("input[type='radio']").click(function(){
scoreValue = $("input[type='radio']:checked").val();
scoreInt = parseInt(scoreValue, 10);
score += scoreInt;
console.log(scoreInt);
  console.log(score);
  $("#score").html(score);
  return scoreInt;
});

其中scoreInt是每个答案的Int值,而score是总得分。 问题是我的scoreInt不会随每个问题更新,而是从第一个问题获取值。 我应该以某种方式通过名称选择每个问题吗?是否需要for循环才能遍历所有问题?

还有,关于在用户返回问题并选择另一个值的情况下如何更新分数的任何想法?我本想在滚动到特定问题时从分数中减去scoreInt。

1 个答案:

答案 0 :(得分:0)

代码问题是scoreValue = $("input[type='radio']:checked").val();,您应该使用scoreValue = $(this).val();

var score = 0;
var scoreInt = 0;
$("#score").html(score);

$("input[type='radio']").click(function(){
scoreValue = $(this).val();
scoreInt = parseInt(scoreValue, 10);
score += scoreInt;
console.log(scoreInt);
  console.log(score);
  $("#score").html(score);
  return scoreInt;
});