简体   繁体   中英

Angular directive USA telephone number

I found the solution for USA telephone numbers, see stackblitz .

But how can I add "+1" to the beginning of the telephone mask? So it should be like: +1(123) 234-2345

First, remove it if its there:

if (event.startsWith('+1')) {
  newVal = newVal.substring(1); 
}

Then prepend it in the end:

newVal = '+1 ' + newVal;

See stackblitz .

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM