HTML DOM tr rowIndex 屬性

2018-08-04 20:41 更新

tr rowIndex 屬性

tr 對(duì)象參考手冊(cè) tr 對(duì)象

定義和用法

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

語(yǔ)法

返回 rowIndex 屬性:

trObject.rowIndex

提示:rowIndex 屬性沒有默認(rèn)值。


瀏覽器支持

Internet ExplorerFirefoxOperaGoogle ChromeSafari

所有主流瀏覽器都支持 rowIndex 屬性


實(shí)例

實(shí)例

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

<html>
<head>
<script>
function displayResult(x)
{
alert("Row index is: " + x.rowIndex);
}
</script>
</head>
<body>

<table border="1">
? <tr onclick="displayResult(this)">
??? <td>Click to show rowIndex</td>
? </tr>
? <tr onclick="displayResult(this)">
??? <td>Click to show rowIndex</td>
? </tr>
? <tr onclick="displayResult(this)">
??? <td>Click to show rowIndex</td>
? </tr>
</table>

</body>
</html>

嘗試一下 ?


tr 對(duì)象參考手冊(cè) tr 對(duì)象
以上內(nèi)容是否對(duì)您有幫助:
在線筆記
App下載
App下載

掃描二維碼

下載編程獅App

公眾號(hào)
微信公眾號(hào)

編程獅公眾號(hào)