亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

HTML DOM id 屬性

定義和用法

idr 屬性可設(shè)置或返回表格的 id。

語法

tableObject.id=id

實例

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

<table id="table1" border="1">
<tr>
<th>Firstname</th>
<th>Lastname</th>
</tr>
<tr>
<td>Peter</td>
<td>Griffin</td>
</tr>
</table>
<br />
<input type="button" onclick=alertId()
value="Alert id of table" />

</body>
</html>