这是通过bootstrap显示表单空字段的默认方式。考虑我有10个字段,我希望每个字段都必须填写。有什么办法可以列出这些错误吗?
<div class="control-group">
<label class="control-label" for="checkboxes">check to proceed</label>
<div class="controls">
<label class="checkbox inline" for="checkboxes-0">
<input type="checkbox" name="checkboxes" id="checkboxes-0" value="I am agree to Terms and Conditions" required="required">
I am agree to Terms and Conditions
</label>
</div>
</div>
我想列出错误,例如:
警报!!!
你还没有输入电子邮件。
你没有输入名字。
你还没有联系。