gpt4 book ai didi

javascript - 我想统计用户参与了多少问题

转载 作者:太空宇宙 更新时间:2023-11-03 17:40:32 24 4
gpt4 key购买 nike

我想统计用户回答了多少个问题。如果用户单击一个问题中的任何一个选项,我想增加一个值。例如:如果用户参加 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;

关于javascript - 我想统计用户参与了多少问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29180992/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com