在我的上传表单中,我有几个选择框。这些被安排在名为#age-groups、#subjects 和#topics 的div 中。
我希望能够使用 jquery 来确保用户从 3 个单独的 div 中的每一个中单击至少一个复选框。
请有人帮我弄清楚如何做到这一点。
对于单击每个 div 中的至少一个复选框时,我希望函数输出:
if (at least 1 checkbox is ticked in each of the 3 divs)
{
$('#two')
.append('<div class="done rotatetwo wiggler"></div>')
.addClass('grey')
}
如果可能,该函数可以在选择最终所需的选择框后立即输出上述代码。