0
我在表格內有一個表單。表單驗證不能與angularJS一起工作
<table class='table table-bordered'>
<caption>ADD NEW BRAND</caption>
<tbody>
<form ng-app="" class="form-horizontal" role="form" name="myForm">
<div class="form-group">
<TR>
<TD>Brand Name</TD>
<TD>
<input type="text" class="form-control" name="name" ng-model="newbrand.Name" placeholder="Enter Brand Name" required>
<span style="color:red" ng-show="myForm.name.$dirty && myForm.name.$invalid">
<span ng-show="myForm.name.$error.required">Brand Name is required.</span>
</span>
</TD>
</TR>
</div>
</form>
</tbody>
</table>
當輸入欄位爲空時,應顯示需要品牌名稱。但它不工作。
有人可以幫助我這個。