我想统计用户回答了多少个问题。如果用户单击一个问题中的任何一个选项,我想增加一个值。例如:如果用户参加 7/10,则计数将为 7。
<div id="ques1" class="showquestion">
<div class="ques">
<p>Questions ////////////</p>
</div>
<div>
A)
<input id="op-1-0" name="answers19" value="2918" type="radio" />
</div>
<div>
B)
<input id="op-1-1" name="answers19" value="2919" type="radio" />
</div>
<div>
C)
<input id="op-1-2" name="answers19" value="2920" type="radio" />
</div>
<div>
B)
<input id="op-1-3" name="answers19" value="2921" type="radio" />
</div>
</div>
<div id="ques2" class="showquestion">
<div class="ques">
<p>Questions ////////////</p>
</div>
<div>
A)
<input id="op-1-0" name="answers19" value="2918" type="radio" />
</div>
<div>
B)
<input id="op-1-1" name="answers19" value="2919" type="radio" />
</div>
<div>
C)
<input id="op-1-2" name="answers19" value="2920" type="radio" />
</div>
<div>
B)
<input id="op-1-3" name="answers19" value="2921" type="radio" />
</div>
</div>
<div class="button-group">
<input value="Previous" type="button" />
<input value="Next" type="button" />
</div>
<br/>
<div id="count"></div>
这是你的答案:(jquery)
var total = $(':radio:checked').length;
我是一名优秀的程序员,十分优秀!