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 | 设置或返回密码字段的 maxlength 属性值。 |
name | 设置或返回密码字段的 name 属性值。 |
pattern | 设置或返回密码字段的 pattern 属性值。 |
placeholder | 设置或返回密码字段的 placeholder 属性值。 |
readOnly | 设置或返回密码字段是否为只读。 |
required | 设置或返回在提交表单之前是否必须填写密码字段。 |
size | 设置或返回密码字段的 size 属性值。 |
type | 返回密码字段是哪种类型的表单元素。 |
value | 设置或返回密码字段的 value 属性值。 |
Input Password 对象方法
方法 | 描述 |
---|---|
select() | 选取密码字段的内容。 |