JavaScript HTML DOM Input Password 对象
-
Input Password 对象
Password对象表示一个HTML <input>元素,其type=“password”。您可以使用getElementById()访问type=“password”的<input>元素:
尝试一下var x = document.getElementById("myPassword");
提示:您还可以通过搜索表单的elements集合来访问<input type =“password”> 。您可以使用document.createElement()方法创建type=“password”的<input>元素:
尝试一下var x = document.createElement("INPUT"); x.setAttribute("type", "password");
-
Input Password 对象属性
属性 描述 autocomplete 设置或返回密码字段的自动完成属性的值 autofocus 设置或返回页面加载时密码字段是否应自动获得焦点 defaultValue 设置或返回密码字段的默认值 disabled 设置或返回是否禁用密码字段 form 返回对包含密码字段的表单的引用 maxLength 设置或返回密码字段的maxlength属性的值 name 设置或返回密码字段的name属性的值 pattern 设置或返回密码字段的pattern属性的值 placeholder 设置或返回密码字段的占位符属性的值 readOnly 设置或返回密码字段是否为只读 required 设置或返回在提交表单之前是否必须填写密码字段 size 设置或返回密码字段的size属性的值 type 返回密码字段的表单元素类型 value 设置或返回密码字段的value属性的值 -
Input Password 对象方法
方法 描述 select() 选择密码字段的内容 -
-