轻松上手,快乐学习!

HTML DOM Input Password 对象


Input Password 对象

Input Password 对象代表一个 type="password" 的 HTML <input> 元素。

访问 Input Password 对象

您可使用 getElementById() 来访问带有 type="password" 的 <input> 元素:

实例

var x = document.getElementById("myPsw");
亲自试一试 »

提示: 您还可以通过搜索表单的 elements 元素集合来访问 <input type="password">。

创建 Input Password 对象

您可使用 document.createElement() 方法来创建带有 type="password" 的 <input> 元素:

实例

var x = document.createElement("INPUT");
x.setAttribute("type", "password");
亲自试一试 »

Input Password 对象属性

属性 描述
autocomplete 设置或返回密码字段的 autocomplete 属性的值
autofocus 设置或返回在页面加载时密码字段是否应自动获得焦点
defaultValue 设置或返回密码字段的默认值。
disabled 设置或返回是否应被禁用密码字段。
form 返回对包含此密码字段的表单的引用。
maxLength 设置或返回密码字段中字符的最大数目。
name 设置或返回密码字段的名称。
pattern 设置或返回密码字段的模式属性值
placeholder 设置或返回密码字段的占位符属性值
readOnly 设置或返回密码字段是否应当是只读的。
required 设置或返回在提交表单之前是否必须填写密码字段
size 设置或返回密码字段的长度。
type 返回密码字段的表单元素类型。
value 设置或返回密码字段的 value 属性的值。

Input Password 对象方法

方法 描述
select() 选取密码字段中的文本。

标准属性和事件

Input Password 对象还支持标准 属性事件


相关页面

HTML 教程: HTML 表单

HTML 参考手册: HTML <input> 标签

HTML 参考手册: HTML <input> type 属性