其他分享
首页 > 其他分享> > HTML禁止自动填充input表单的解决方案

HTML禁止自动填充input表单的解决方案

作者:互联网

项目提测中出现问题: 用户名密码自动保存用户名密码之后,回显在项目中别的位置(有密码框,但是没有用户名的地方), 不想让自动显示出来, 需要兼容谷歌, 火狐, IE, 试用了好多方法均不可满足条件,

最后终于找到解决办法,废话不多说,直接上代码!

 

<form method="post" action="">
  <input type="text" name="username" readonly="readonly" id="username">
  <input type="password" name="password" readonly="readonly" id="password">
  <input type="submit" value="登录">
</form>
<script>
  setTimeout(function removeReadonly(){
    var username=document.getElementById("username");
    var password=document.getElementById("password");
    username.removeAttribute("readonly");
    password.removeAttribute("readonly");
  },1000);
</script>

 

思路:首先设置input为只读readonly,当页面加载完成后,浏览器不会自动填充内容,但是也不可以进行编辑。然后我们再用js的定时器延迟一段时间后移除input的只读属性readonly,输入框便可进行再次编辑!完美解决!


原文链接:https://blog.csdn.net/u012800952/article/details/80654649

标签:username,用户名,表单,readonly,HTML,自动,input,password
来源: https://www.cnblogs.com/wangqian888/p/16135176.html