Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以标记或标记我的 HTML 以确保自动填充诸如“名字”之类的字段?
大多数流行的浏览器使用正则表达式作为字段名称,例如名字
.*name|initials|fname|first$".
但是更改字段名称会在其他地方产生影响;我被允许改变的东西是有限的。
这是一个自动完成的表格
<form action="demo_form.asp" method="get" autocomplete="on"> First name:<input type="text" name="fname"><br> E-mail: <input type="email" name="email"><br> <input type="submit"> </form>
我希望这有助于它是我能找到的最好的:)