57
以下是我的代碼片段。我想用角度來驗證我的下拉菜單。 AngularJS下拉需要驗證
<td align="left" width="52%">
<span class="requiredSmall">*</span>
<select class="Sitedropdown" style="width: 220px;"
ng-model="selectedSpecimen().serviceID"
ng-options="service.ServiceID as service.ServiceName for service in services">
<option value="" ng-selected="selected">Select Service</option>
</select>
</td>
有效手段:
有效值可以是任何東西,而是 「選擇服務」,這是我的默認值。與其他ASP.net一樣需要下拉字段驗證程序DefaultValue =「0」,所以這裏我的下拉菜單將被綁定到服務上,並且我希望選擇除「選擇服務」以外的所有其他值。
應該指出的是,選擇需要ng-model才能正常工作 – phikes 2013-08-26 10:21:26
正確,ngOptions需要ngModel。 – Stewie 2013-08-26 11:38:32
這個例子非常有用。謝謝。 – ddagsan 2016-06-10 15:26:51