角材设计中如何防止密码字段自动填充已保存的密码
我使用了autocomplete=“off”,它对我不起作用。
<md-input-container class="md-block margin-top-10" flex-gt-sm>
<input type="password" name="password" ng-model="auth.user.password"
name="password" ng-required="true" autocomplete="off" >
</md-input-container>
2条答案
按热度按时间kr98yfug1#
据我所知,这是一个材料问题,如文件here。
正如在注解中提到的,有一个解决办法,就是在表单定义中添加
autocomplete="off"
。ahy6op9u2#
autocomplete="new-password"
这是工作的me.to避免自动保存密码,以及自动填充.