尽管autocomplete =“ off”用于表单和输入。 Chrome浏览器会否决并填充存储的值。我在许多网址中显示Chrome不尊重自动填充属性。还有其他方法可以清除该值。
<input type="email" name="emailId" autocomplete="off" [(ngModel)]="emailId" formControlName="email" value="" placeholder="Enter Email Id" />
我在ngOnInit()中尝试了以下所有方法
this.emailId = ''; // Not Working
this.emailId = null; // Not Working
this.emailId = undefined; // Not Working
this.emailId = 'ABC'; // This works but not usefull.
也尝试过使用ViewChild字段,但仍然无法正常工作。
还有其他选择吗? 谢谢