如何在Angular的文本掩码中使用placeholderChar

时间:2019-01-02 15:59:34

标签: angular text-mask

我在Angular 7项目中使用文本蒙版。我无法从默认下划线更改placeholderChar。

  <input
    id="1"
    name="phone"
    placeholderChar="/u2000"
    [(ngModel)]="myModel"
    [textMask]="{mask: mask}"
    type="text"
    class="form-control"
  />

在应用程序组件中

 constructor() {
this.mask = ['(', /[1-9]/, /\d/, /\d/, ')', ' ', /\d/, /\d/, /\d/, '-', 
/\d/, /\d/, /\d/, /\d/]
this.myModel = ''
this.modelWithValue = '5554441234'
this.formControlInput.setValue('5555551234')

}

我在做什么错了?

0 个答案:

没有答案