实际上我有这种方法,但是只接受数字
<input type="text" class="form-control form-control-sm" (keypress)="numberOnly($event)">
numberOnly(event): boolean {
const charCode = (event.which) ? event.which : event.keyCode;
if (charCode > 31 && (charCode < 48 || charCode > 57)) {
return false;
}
return true;
}
答案 0 :(得分:0)
您具有文本的输入类型。将其切换为数字输入类型。