HTML DOM id 属性
JavaScript基础 2022-06-08 17:16:41小码哥的IT人生shichen
HTML DOM id 属性
定义和用法
id 属性可设置或返回表元的 id。
语法
tabledataObject.id=id
实例
下面的例子返回的表元的 id:
<html>
<head>
<script type="text/javascript">
function alertId()
{
alert(document.getElementById("td1").id
);
}
</script>
</head>
<body>
<table border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td id="td1">Peter</td>
<td id="td2">Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick=alertId() value="Alert ID" />
</body>
</html>
TIY
完整实例【取得表元的 id】:
<html>
<head>
<script type="text/javascript">
function alertId()
{
alert(document.getElementById("td1").id);
}
</script>
</head>
<body>
<table border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td id="td1">Peter</td>
<td id="td2">Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick=alertId() value="Alert ID" />
</body>
</html>
可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html