我有以下代碼:角度選擇默認選項NG-需要
<select id="document" ng-model="document.Id" ng-options="option.Id as option.Name for option in documents" ng-required="IsDocumentRequired">
<option value="">Please Select Document</option>
</select>
的問題是,我不希望這個默認值(「請選擇文檔」),以滿足所需的NG-標誌設置爲true時。
總之,我希望用戶被迫選擇一個非默認選項。
感謝
的迴應現在不行嗎? 'value =「」''
@bboyk參見plunker演示 –
只需使用'required'。這裏沒有要求使用'ng-required'。 – developer033