所以我正在使用jQuery 验证并且已经管理(尽管有一些过时的文档)来让一组必需的单选框工作。问题是插件直接在第一个无线电之后附加错误标签(该组中具有所需类的第一个)。
考虑到这一点,是否可以为每个错误标签设置自定义位置?
作为参考,这是 HTML:
<tr>
<td width="200">
<label>Title2 *</label>
</td>
<td width="505">
>>> <label><input type="radio" class="required" name="Title2" value="Mr" /> <!-- ERROR APPEARS HERE -->Mr</label>
<label><input type="radio" class="required" name="Title2" value="Miss" />Miss</label>
<label><input type="radio" class="required" name="Title2" value="Mrs" />Mrs</label>
<label><input type="radio" class="required" name="Title2" value="Ms" />Ms</label>
<!-- I WANT ERROR LABEL HERE -->
</td>
</tr>
在标记的行上滚动>>>
,您会看到显示插件正在放置错误标签的注释,就在关闭之前,</td>
您会看到我想要标签的位置。
任何帮助表示赞赏,谢谢。