防止浏览器input自动填写账号和密码方法
部分浏览器喜欢自作多情的填写账号和密码,尤其是360浏览器,有时候真的是很让人头疼,这里是一种解决办法,希望能帮大家解决问题。
那么解决办法就是在账号和密码之间添加<input type="text" style="display:none">。
<div id="loginLabel">用户登录</div>
<form id="loginForm">
<label id="msg" class="msgHide"></label>
<input id="userName" class="inputTxt" value="" type="text" placeholder="手机号/邮箱" autocomplete="off">
<input type="text" style="display:none"><!-- for disable autocomplete on chrome 、360-->
<input id="userPwd" class="inputTxt" value="" type="password" placeholder="密码" autocomplete="off"><br/>
<input id="rememberName" type="checkbox"><label id="rememberTxt">记住用户名</label>
<input id="btnSubmit" type="submit" value="登录">
<label><a id="forgetPwd" href="findpassword.html">忘记密码?</a></label>
<label><a id="regiter" href="register.html">注册</a></label>
</form>
以上是 防止浏览器input自动填写账号和密码方法 的全部内容, 来源链接: utcz.com/a/74.html