如何禁用 HTML 输入域的自动补全?
要禁用输入域的自动补全,代码如下 −
示例
<!DOCTYPE html> <html> <head> <style> input{ font-size: 18px; padding: 10px; margin: 10px; border:1px solid grey; } </style> </head> <body> <h1>Autocomplete on/off Example</h1> <form> First name: <input type="text" name="firstName" autocomplete="off"><br> Last name: <input type="text" name="lastName" autocomplete="on"><br> <input type="submit"> </form> <h2>Type in the above fields and refresh page to see autocomplete at work</h2> </body> </html>
输出
以上代码将产生以下输出 −
在提交表单一次后在以上字段中输入一些内容 −
广告