HTML DOM rowIndex 属性

 

HTML DOM rowIndex 属性

返回 HTML DOM Tablerow 对象参考手册

定义和用法

rowIndex 属性返回某一行在表格的行集合中的位置(row index)。

语法

tablerowObject.rowIndex

实例

下面的例子返回了某一行在表格中的位置:

<html>
<head>
<script type="text/javascript">
function alertRowIndex()
  {
  alert(document.getElementById("tr2").rowIndex);
  }
function CurrenRowIndex()
  {
      var currRowIndex=event.srcElement.parentNode.parentNode.rowIndex;
  <!--alert(document.getElementById("mytable").rowIndex);-->
  alert(currRowIndex);
 
  }

</script>
</head>
<body>

<table border="1" id="mytable">
<tr id="tr1">
<th>Firstname</th>
<th>Lastname</th>
<th>״̬</th>
</tr>
<tr id="tr2">
<td>Peter</td>
<td>Griffin</td>
<td>
<input type="button" onclick="CurrenRowIndex()"
value="currentrow index" />
</td>
<tr id="tr3">
<td>Peter</td>
<td>Griffin</td>
<td>
<input type="button" onclick="CurrenRowIndex()"
value="currentrow index" />
</td>

</table>
<br />
<input type="button" onclick="alertRowIndex()"
value="Alert row index" />

</body>
</html>

TIY

返回某一行在表格的行集合中的位置

你可能感兴趣的:(html,function,border,button)