用户名密码邮件等自动填充问题的解决:
1. form 加入:autocomplete="off"属性
2. 每个password中 加入 type="text" onfocus="this.type='password'" autocomplete="off" 属性
3. password最上面加入一个不显示的password:
<input type="password" name="password1000" style="display:none;width:0;height:0;">
4. 如果email或者username中 也自动填充 ,需要在下面加入一个不显示的text,并且必须加上name属性值 如:
<input type="text" name="email1000" style="display:none;width:0;height:0;" />
<form autocomplete="off">
<input type="text" autocomplete="off" class="post" style="WIDTH: 200px" maxlength="255" size="25" name="email" value="${u.email?default("")?html}" />
<input type="text" name="email1000" style="display:none;width:0;height:0;" />
<input type="password" name="password1000" style="display:none;width:0;height:0;">
<input type="text" onfocus="this.type='password'" autocomplete="off" />
</form>
posted on 2016-08-26 14:20
liufx 阅读(290)
评论(0) 编辑 收藏