我在html表单中使用angularJs验证但是form.Code中没有显示错误消息如下:
<form role="form" name="ContactForm" class="form-horizontal" novalidate>
<div class="form-group">
<label class="col-lg-3 col-md-3 col-sm-3 control-label">Name</label>
<div class="col-sm-3 col-md-3 col-lg-3 first-name-txtbox">
<input type="text" class="form-control" name="FirstName" placeholder="First Name" required="" />
<span ng-show="ContactForm.FirstName.$error.required">
<small class="text-danger">Please enter First Name</small>
</span>
</div>
答案 0 :(得分:0)
您需要在输入上设置ng-model,否则无法使用