我有一个文本字段。如果输入的字符数限制超过15,我必须检查它是否显示正确的错误消息。
答案 0 :(得分:-1)
目前还不清楚你的问题,但如果你需要显示正确的错误,你需要这样的事情:
<form name="formName">
<input fr-validate type="text" name="Name" class="form- control border-radius-0" ng-maxlength="15" ng-model="FirstName" />
<p ng-show="formName.Name.$error.maxlength">Name is too long</p>
</form>
如果超出长度,则会显示p
。