Home > Q&A > body text
如题题题题题题题题题题题题题题题题题题题题题题题
伊谢尔伦2017-04-10 15:31:00
在不支持html5的环境下,可以在不想对其自动填充的input元素之上再添加一个display为none的input元素
input
display
none
PHP中文网2017-04-10 15:31:00
给你个简单的建议:开启隐身模式
html5表单空间的新的属性(autocomplete):<input type="email" name="email" autocomplete="off" />
html5
autocomplete
<input type="email" name="email" autocomplete="off" />
天蓬老师2017-04-10 15:31:00
给不需要记录的input加autocomplete="off"
autocomplete="off"
<input type="password" name="password" autocomplete="off">
迷茫2017-04-10 15:31:00
设置为type=“text”,获取焦点的时候再改为type=“password”
楼主,解决了么?求解