Formatting Phone Number Input In Angular

后端 未结 2 869
盖世英雄少女心
盖世英雄少女心 2021-01-14 01:10

I have seen many solutions to formatting a phone number input field in Angularjs, but I cannot find anything on Angular 7. What I essentially want is for the user to type th

2条回答
  •  独厮守ぢ
    2021-01-14 01:31

    You can easily install ngx-mask package and then specify your ideal mask like this:

    mask="(000) 000-000"
    
    < input type="text" mask="(000) 000-000" />
    

提交回复
热议问题