具有自动完成功能的 HTML 表单(一个输入字段关闭):
<form action="/action_page.php" autocomplete="on"> <label for="fname">名字:</label> <input type="text" id="fname" name="fname"><br> <label for="lname">姓:</label> <input type="text" id="lname" name="lname"><br> <label for="email">邮箱:</label> <input type="email" id="email" name="email" autocomplete="off"><br> <input type="submit"> </form>
autocomplete
属性指定输入字段是否应启用自动完成功能。
自动完成允许浏览器预测值。 当用户开始输入字段时,浏览器应根据之前输入的值显示填充字段的选项。
注意: autocomplete
属性适用于以下输入类型: text, search, url, tel, email, password, datepickers, range, 和 color。
表中的数字指定了完全支持该属性的第一个浏览器版本。
属性 Attribute | |||||
---|---|---|---|---|---|
autocomplete | 17.0 | 6.0 | 2.0 | 5.1 | 10.0 |
<input autocomplete="on|off">
值 Value | 描述 Description |
---|---|
on | 默认。 指定自动完成已打开(启用) |
off | 指定自动完成关闭(禁用) |