我有一个我正在处理的基本测验/调查类型的应用程序,如果他们没有回答所有问题,我想在提交之前给用户提示。所有问题都是使用单选按钮的多种选择:
<div class="question">
Q1: What is the second letter of the alphabet?
<div class="choices">
<input type="radio" name="question_1" value="1" /> A
<input type="radio" name="question_1" value="2" /> B
<input type="radio" name="question_1" value="3" /> C
</div>
</div>
<div class="question">
Q2: Which out of these is a berry?
<div class="choices">
<input type="radio" name="question_2" value="1" /> Apples
<input type="radio" name="question_2" value="2" /> Bananas
<input type="radio" name="question_2" value="3" /> Carrots
</div>
</div>
<div class="question"> ...etc
如何找到哪些群组没有选项?或者至少,如果有任何尚未回答的问题?
jQuery没问题,甚至更喜欢。
答案 0 :(得分:24)
$('div.question:not(:has(:radio:checked))')