HTML DOM Password 对象

Password 对象

Password 对象代表 HTML 表单中的密码域。

HTML 的 <input type="password"> 标签在表单上每出现一次,一个 Password 对象就会被创建。

该文本输入字段供用户输入某些敏感的数据,比如密码等。当用户输入的时候,他的输入是被掩盖的(例如使用星号*),以防止旁边的人从他背后看到输入的内容。不过需要注意的是,当表单提交时,输入是用明文发送的。

与类型为 "text" 的元素类似,当用户改变显示值时,它会触发 onchange 事件句柄。

您可以通过遍历表单的 elements[] array 来访问密码域,或者通过使用 document.getElementById() 。

IE: Internet Explorer, F: Firefox, O: Opera, W3C: World Wide Web Consortium (Internet 标准).

Password 对象的属性

属性 描述 IE F O W3C
accessKey 设置或返回访问密码域的快捷键。 4 1 9 Yes
alt 设置或返回当浏览器不支持密码域时供显示的替代文字。 5 1 9 Yes
defaultValue 设置或返回密码域的默认值。 4 1 9 Yes
disabled 设置或返回是否应被禁用密码域。 5 1 9 Yes
form 返回一个对包含此密码域的表单的引用。 4 1 9 Yes
id 设置或返回密码域的 id。 4 1 9 Yes
maxLength 设置或返回密码域中字符的最大数目。 4 1 9 Yes
name 设置或返回密码域的名称。 4 1 9 Yes
readOnly 设置或返回密码域是否应当是只读的。 4 1 9 Yes
size 设置或返回密码域的长度。 4 1 9 Yes
tabIndex 设置或返回密码域的 tab 键控制次序。 4 1 9 Yes
type 返回密码域的表单元素类型。 4 1 9 Yes
value 设置或返回密码域的 value 属性的值。 4 1 9 Yes

Standard Properties

属性 描述 IE F O W3C
className Sets or returns the class attribute of an element 5 1 9 Yes
dir Sets or returns the direction of text 5 1 9 Yes
lang Sets or returns the language code for an element 5 1 9 Yes
title Sets or returns an element's advisory title 5 1 9 Yes

Password 对象的方法

方法 描述 IE F O W3C
blur() 从密码域移开焦点。 4 1 9 Yes
focus() 为密码域赋予焦点。 4 1 9 Yes
select() 选取密码域中的文本。 4 1 9 Yes