HTML DOM id 属性

定义和用法

id 属性设置或返回密码域的 id。

语法

passwordObject.id=id

实例

下面的例子返回了该密码域的 id:

<html>
<body>

<form id="form1">
<input type="password" id="password1" />
</form>

<p>The id of the password field is:
<script type="text/javascript">
x=document.getElementById('password1');
document.write(x.id);
</script></p>

</body>
</html>