0
我有一個選擇國家下拉列表,其中有一個名爲「選擇」的默認值。頁面底部有一個提交按鈕,只有在下拉菜單中有一些國家/地區值時才能啓用該按鈕。對於默認值,該按鈕應該被禁用,因爲它是一個必填字段。以角度2形式禁用默認下拉值的提交按鈕
我已經在我的.ts文件中爲下拉菜單創建了一個組件。
@component({
selector:'country-component',
template:'<form>
<select>
<option [disabled]="butDisabled">Select</option>
<option [value]="" *ngFor="let country of countryList">{{country.label}}</option>
</select>
</form>'
})
export class countryComponent implements onInit{
butDisabled: boolean = true;
}
在我的HTML的
<country-component (ngModelOptions)="{standalone:true}" name=""></country-component>
<button>Submit</button>
這並不work.It使禁用整個下拉。任何人都可以讓我知道我哪裏錯了。
按鈕定義在哪裏?我看到兩個選項。 –
@John Baird查看更新的代碼。 –