禁用自动填充功能/管理密码对话框

时间:2016-12-02 10:53:53

标签: javascript angularjs security autocomplete

是否可以删除chrome / safari自动完成功能,该功能会在您登录应用程序后要求存储密码?

我尝试添加" autocomplete = off"在表单和输入字段中



<form id="formforlogin" autocomplete="off">
 <input id="usernameforlogin" type="hidden" name="usrnm" autocomplete="off"/>
 <input id="passwordforlogin" type="hidden" name="psswrd" autocomplete="off"/>
 </form>
 <table style="margin-left: auto;margin-right: auto;">
   <tr>
     <td>Username</td>
     <td><input id="usernameforshow" type="text" placeholder="user" autocomplete="off" /></td>
   </tr>
   <tr>
     <td>Password</td>
     <td><input id="passwordforshow" type="password" placeholder="password" autocomplete="off'/></td>
   </tr>
&#13;
&#13;
&#13;

在添加上面的代码片段后,我无法摆脱chrome的自动完成功能,这要求您在登录后立即保存密码对话框。我的应用程序是使用角度js构建的,路由是使用angular-ui-router完成的。

如果有人帮助解决上述问题,将会非常有帮助。

0 个答案:

没有答案