4
我有一個小問題。如何設置值輸入字段Ionic 2
我使用的HTML代碼:
<ion-input id="amount" type="number" ></ion-input>
<button (click)="setinput()">Set Value</button>
這TS碼:
setinput(){
var input= document.getElementById("amount") as HTMLInputElement;
input.value=42;
console.log("amount");
console.log(input.value);
}
我的控制檯告訴我,這個數字得到了改變。但更新的值不會顯示在我的輸入字段中。你有什麼建議嗎?
在此先感謝!
L. Trembon
謝謝,它工作得很好。但不知何故,它添加了ng有效的類,如果它填充。我能避免這種情況嗎? –
我不知道如何避免這種情況。他們添加了它來幫助輸入驗證:https://angular.io/docs/ts/latest/guide/forms.html –
爲什麼你突然不接受我的答案? –