HTML <input type="password"> 类型属性

❮ HTML <input> 类型属性

实例

定义一个密码字段(字符被屏蔽):

<label for="pwd">Password:</label>
<input type="password" id="pwd" name="pwd">
亲自试一试 »

定义和用法

<input type="password"> 定义了一个密码字段(字符被屏蔽)。

注释:任何涉及敏感信息(如密码)的表单都应通过 HTTPS 提供。

提示: 始终添加< <label> 标签以获得最佳可访问性实践!


浏览器支持

属性
type="password" Yes Yes Yes Yes Yes

语法

<input type="password">

❮ HTML <input> 类型属性