how to format input box text as I am typing it

后端 未结 5 1434
长发绾君心
长发绾君心 2020-11-30 06:44

How do I format the number as I type it in the html input box?

so for example, I want to type the number 2000, the moment I type the 4th digit, the text (that\'s cur

5条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-30 07:25

    You can use ngx-format-field. It is a directive to format the input value which will appear in the view. It will not manipulate the Input value which will be saved in the backend. See link here!

    Example:

    component.html:
    
    
    
    component.ts
    
    onChangeCurrency() {
    this.currency.patchValue(this.currency.value);
    }
    

    To see the demo: here!

提交回复
热议问题