在IE11上输入占位符问题

时间:2017-06-08 13:27:26

标签: javascript html css angular angular2-template

我是angular 2angular 4的新手。我刚刚将我的应用程序从2转换为4.因此,我在这里面临一个问题,在IE11上,当获得焦点时,占位符被移除并且表单控件设置为dirty并且pristine设置为false。在chrome / FF上,这个问题永远不会发生。

我的Html就像 -

    <input type="text" class="form-control" id="processName" 
                         [(ngModel)]="process.displayName" [disabled]="isProcessLoading"
                         #processName="ngModel" maxLength="64" pattern="^.*\S.*" name="processName"
 placeholder="{{'PROCESS-FORM.name-placeholder' | translate}}" required
                         placeholderRequired [inputBinding]="processName"/>

我无法理解为什么会这样?谢谢你的进步。

0 个答案:

没有答案