ngModelChange和change事件一起在IE11中不起作用

时间:2018-06-20 09:56:18

标签: javascript angular typescript

我有一个文本输入,在这里我也与numberformatter管道一起进行单向绑定。

我还有一个(ngModelChange)=>来消除使用numberformatter和(change)事件处理计算时添加的逗号。

<text-input class="text-right" 
   [editable]="editableFlag" 
   [ngModel]="pAmount | numberFormatter" 
   (ngModelChange)="pAmount =($event).replace(',', '')" 
   (change)="valChanged($event,fundType, key)" > 
</text-input>

所有功能都可以在Chrome中正常运行,但是(ngModelChange)在IE11中似乎无法正常工作。

我已经搜索过SO中的其他帖子,到目前为止没有任何帮助。

有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

也许它错过了对变量的双向绑定。 如果您输入'[[(ngModel)] = pAmount | numberFormatter'?