我遇到自动填充错误的问题。任何人都可以为它提供最佳解决方案吗?
当前的html:
<form name="register" action="" method="">
<input type="text" id="email" placeholder="Username" name="email" autocomplete="false">
<input type="password" id="password" placeholder="Password" name="password" autocomplete="false" required>
<div id="submit" type="submit">Let me in!</div>
</form>
答案 0 :(得分:0)
从输入字段中删除所有自动填充,然后添加:
<form action="" method="post" autocomplete="off">
代替您的初始<form>
代码
这将完全禁用表单上的自动填充功能。
答案 1 :(得分:0)
在最后一个输入字段上有自动完成的故障。
一个简单的技巧是添加输入文本字段:
style="display: none;"
作为最后一个输入字段。