HTML DOM id 属性

定义和用法

id 属性设置或返回表格行的 id。

语法

tablerowObject.id=id

实例

下面的例子返回了表格行的 id:

<html>
<head>
<script type="text/javascript">
function alertId()
  {
  alert(document.getElementById('tr1').id);
  }
</script>
</head>

<body>
<table border="1">
<tr id="tr1">
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr id="tr2">
<td>Peter</td>
<td>Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick="alertId()"
value="Alert table row ID" />

</body>
</html>