HTML DOM id 属性
JavaScript基础 2022-06-08 16:17:33小码哥的IT人生shichen
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>
TIY
完整实例【取得密码域的 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>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html