禁止浏览器的自动保存密码

2019-04-25  本文已影响0人  Miamin

现状:在login之后弹出以下这个框(图1),保存后会在浏览器(图2)的这个位置,然后在每次页面进入的时候,一些普通的input的type=text的框都是自动填充login时的用户名,希望不能乱填充数据。

图1 图2

方案1.

在input框中加入属性  autocomplete="off"          结果:没作用

方案2.

虚拟多加入一个input,让他去填充

 <input type="text" class="xs"  style="width:395px" autocomplete="off">   ----页面显示的框

<input type="text" class="xs" autocomplete="on" style="display:none;"> ----页面虚拟的框

结果:没作用,还是填充第一个框

方案3:

虚拟多加入一个input,让他去填充

<input type="text" class="xs"  style="width:395px" autocomplete="off">   ----页面显示的框<input type="text" class="xs" autocomplete="on" style="opacity: 0;"> ----页面虚拟的框

结果:有效

方案4:

把以下图中的按钮关掉

上一篇下一篇

猜你喜欢

热点阅读