我想知道有多少问题是用户参加的。如果用户从一个问题中单击任何一个选项,我想增加一个值。例如:如果用户参加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>
答案 0 :(得分:0)
这是你的答案:(jquery)
var total = $(':radio:checked').length;
答案 1 :(得分:0)
尝试这个..
$('#click').click(function(){
var total = $(':radio:checked').length;
alert(total);
});
点击下一步并在jsfiddle演示中查看。