编辑框自动填充不清除占位符
Edit box autofill does not clear placeholder
基本HTMLPHPCSS。我有一个带占位符的编辑框。如果我之前编辑过一次字段(比如用户名和密码),并且浏览器缓存了它们,我再次 return 到表单(例如登录页面),占位符文本和自动填充的值出现在彼此之上。如果重要的话,这是使用 osclass 代码。在编辑框中单击会删除占位符文本,并保留自动填充的值。
感谢您的帮助!
这是网站 -
letmeborrowthat
您应该在代码中关闭自动完成功能
即
<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
基本HTMLPHPCSS。我有一个带占位符的编辑框。如果我之前编辑过一次字段(比如用户名和密码),并且浏览器缓存了它们,我再次 return 到表单(例如登录页面),占位符文本和自动填充的值出现在彼此之上。如果重要的话,这是使用 osclass 代码。在编辑框中单击会删除占位符文本,并保留自动填充的值。
感谢您的帮助!
这是网站 - letmeborrowthat
您应该在代码中关闭自动完成功能
即
<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