我想將角度2中的選擇的默認選項設置爲「選擇一個選項」。這裏是我到目前爲止的代碼:設置默認的選擇列表值Angular2
HTML
<div class="form-group">
<label class="col-md-4 control-label" for="CustomFix">Select an option:</label>
<div class="col-md-4">
<select id="example" name="example" class="form-control" [(ngModel)]="exampleArray" (ngModelChange)="changes()">
<option disabled selected>Select a Custom Fix</option>
<option *ngFor="let example of exampleArray" [ngValue]="example">{{example.attribute }}</option>
</select>
</div>
</div>
打字稿
changes(){
console.log(this.example.option);
}
我在我的HTML行:
<option disabled selected>Select a Custom Fix</option>
如何我可以啓用此作爲默認t選項?它與我的數組分開使用ngModel
選項如何既殘疾人和選擇?如果它被禁用,那麼根據定義它不能被選擇。 –