我在一个表单中有一个复选框,我使用jquery验证。这个复选框下面会显示错误信息,错误后会显示复选框的标签。
我需要在复选框标签后显示错误消息。
这是我的代码:
<li>
<input type="checkbox" name="toc"><span name="toc"> I agree to the terms and conditions
</span>
</input>
</li>
<br>
<li>
<label style="margin-top:20px;display:none" name="toc" class="error">This field is required</label>
</li>
表单的jquery是
$(document).ready(function () {
$('#form').validate({
rules: {
toc: {
required: true
}
}
});
答案 0 :(得分:1)
您无法在输入标记中放置任何标记(元素)。