HTML DOM id 属性
JavaScript基础 2022-06-08 15:35:48小码哥的IT人生shichen
HTML DOM id 属性
定义和用法
id 属性设置或返回 body 元素的 id。
语法
bodyObject.id=id
实例
下面的例子将展示设置 <body> 元素的 id 的两种方法:
<html>
<body id="myid">
<script type="text/javascript">
x=document.getElementsByTagName('body')[0];
document.write("Body id: " + x.id
);
document.write("<br />");
document.write("An alternate way: ");
document.write(document.getElementById('myid').id
);
</script>
</body>
</html>
输出:
Body id: myid
An alternate way: myid
TIY
完整实例【返回 <body> 元素的 id】:
<html>
<body id="myid">
<script type="text/javascript">
x=document.getElementsByTagName('body')[0];
document.write("Body id: " + x.id);
document.write("<br />");
document.write("An alternate way: ");
document.write(document.getElementById('myid').id);
</script>
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html