HTML <form>自动完成属性用于指定表单的自动完成打开或关闭值。在浏览器上将autocomplete属性设置为时,浏览器将自动完成用户之前输入的值。
用法:
<form autocomplete="on|off">
属性值:
- on:它具有默认值。在浏览器上将autocomplete属性设置为时,浏览器将自动完成用户之前输入的值。
- off:用户应为每次使用输入每个字段的值。浏览器不应自动完成条目。
例:本示例说明了<form> autocomplete属性的用法。
<!DOCTYPE html>
<html>
<head>
<title>
HTML DOM Form
autocomplete Property
</title>
</head>
<body style="text-align:center">
<h1>
GeeksForGeeks
</h1>
<h2>HTML |
<form>autocomplete
Attribute
</h2>
<form action="#"
method="post"
id="users"
autocomplete="on">
<label for="username">
Username:
</label>
<input type="text"
name="username"
id="Username">
<br>
<label for="password">
Password:
</label>
<input type="password"
name="password"
id="password">
<br>
<br>
</form>
</body>
</html>
输出:
支持的浏览器:HTML | <input> autocomplete属性在下面列出:
- 谷歌浏览器
- IE浏览器
- Firefox
- Opera
- Safari
相关用法
- HTML autocomplete属性用法及代码示例
- HTML <input> autocomplete属性用法及代码示例
- HTML <fieldset> autocomplete属性用法及代码示例
- HTML Input URL autocomplete用法及代码示例
- HTML Textarea autocomplete用法及代码示例
- HTML Form autocomplete用法及代码示例
- HTML Input Text autocomplete用法及代码示例
- HTML Input Search autocomplete用法及代码示例
- HTML Input Date autocomplete用法及代码示例
- HTML Input Datetime autocomplete用法及代码示例
- HTML Input DatetimeLocal autocomplete用法及代码示例
- HTML Input Time autocomplete用法及代码示例
- HTML Input Range autocomplete用法及代码示例
- HTML Input Number autocomplete用法及代码示例
- HTML Input Password autocomplete用法及代码示例
注:本文由纯净天空筛选整理自ManasChhabra2大神的英文原创作品 HTML | <form> autocomplete Attribute。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。