我想使用 jQuery 验证我的表单。它有一组单选按钮。
我为一组单选按钮或解决方案找到了多种解决方案,您必须在其中具体说明有哪些组名。
像这里: 用 jquery 验证单选按钮?
问题是,表单是在运行时生成的。问题保存在 txt 文件中(不要问,这是学校练习)。生成的 HTML 代码如下所示:
<p>What's your gender?
<input type="radio" name="gender" value="m" />Male
<input type="radio" name="gender" value="f" />Female
</p>
<p>
How satisfied are you with out support?
<input type="radio" name="satisfaction" value="0%" />Not at all
<input type="radio" name="satisfaction" value="25%" />Not very much
<input type="radio" name="satisfaction" value="75%" />It was ok
<input type="radio" name="satisfaction" value="100% />It was very satisfying
</p>
js 文件是使用 Twig 生成的,因此可以循环遍历所有单选按钮组,但如果可能的话,我想避免这种情况。