编辑框自动填充不会清除占位符

时间:2017-02-10 09:15:59

标签: php html css edit osclass

基本HTML PHP CSS。我有一个带占位符的编辑框。如果我之前编辑过一次字段(如用户名和密码),并且浏览器已缓存它们,并且我再次返回到表单(例如,登录页面),则占位符文本和自动填充的值都是出现在彼此之上。这是使用osclass代码,如果这很重要。单击编辑框将删除占位符文本,并保留自动填充的值。

感谢您的帮助!

这是网站的 - letmeborrowthat

placeholder text and edit text both appearing

1 个答案:

答案 0 :(得分:1)

您应该在代码中关闭自动完成功能

即,

<input id="email" type="text" name="email" value="" class="input-text" autocomplete="off">
<input id="password" type="password" name="password" value="" class="input-text" autocomplete="off">

您可以从mdn here

中阅读