我在做最大長度驗證手動ngModelChange不能正常工作
這裏的代碼。
<input class="inputsyle" [(ngModel)]="Modelvalue"
(ngModelChange)="variantvaluevalidation(Modelvalue)" type="text" />
TS碼
variantvaluevalidation(obj) {
if (obj.length > 5) {
return false;
}
}
運行像什麼期望的代碼。但它允許輸入超過5個字符。我也試過
event.preventdefault()
和event.stoppropagation
。但它不起作用。
對此有何想法?都讚賞。
你有沒有'的console.log(OBJ);'來看看它的日誌? – echonax
你想實現什麼?您不想在輸入內輸入超過5個字符? –
am在console.log()\ –