美文网首页
禁止浏览器的自动保存密码

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

作者: Miamin | 来源:发表于2019-04-25 11:10 被阅读0次

    现状:在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:

    把以下图中的按钮关掉

    相关文章

      网友评论

          本文标题:禁止浏览器的自动保存密码

          本文链接:https://www.haomeiwen.com/subject/wgeagqtx.html