我想使用jqBootstrapValidation来验证<input>
元素(type = text),而无需提交按钮。基本上,我使用的是Bootstrap + AngularJS。因此,AngularJS控制器中有很多代码。我不想提交任何表格。虽然我有class="form-horizontal"
的div元素,但这些元素并不是<form>
元素。
使用jqBootstrapValidation有一般的方法吗?
示例加价:
<div class="form-horizontal">
<div class="form-group">
<div class="col-lg-4 col-md-offset-1">
<label id="lblDesc">Description</label>
</div>
<div class="col-lg-4">
<input type="text" id="txtDesc" name="Desc" data-validation-ajax-ajax="/Draft/Validate" data-element-name="Desc" data-ng-model="Desc" />
</div>
</div