我在 UI 中有一个文本框和搜索按钮。我想验证它,就像在按钮单击时只输入数字一样。
我没有在表单中使用它(我知道了很多验证表单控件的方法)。但我只是在我的 div 中设计了它(独立)。
所以你能指导我验证我在 Angular 中的控制吗?
<div id="srchbox">
<p id="ptext">Please enter the Movie Id</p>
<input type="text" class="form-control" placeholder="Search" id="Srchtxt" ng-model="_Id">
<button type="submit" class="btn btn-default" id="btnsrch" ng-click="search(_Id)"><span class="glyphicon glyphicon-search"></span></button>
</div>