td/th cellIndex 屬性
td/th 對(duì)象定義和用法
cellIndex 屬性可返回一行的單元格集合中單元格的位置。
語(yǔ)法
返回 cellIndex 屬性:
tdObject.cellIndex
或者
thObject.cellIndex
或者
thObject.cellIndex
提示: cellIndex 屬性沒(méi)有默認(rèn)值。
瀏覽器支持
所有主流瀏覽器都支持 cellIndex 屬性
實(shí)例
實(shí)例
彈出單元格的位置(cellIndex):
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function displayResult(x){
alert("Cell index is: " + x.cellIndex);
}
</script>
</head>
<body>
<table border="1">
<tr>
<td onclick="displayResult(this)">單擊顯示單元格下標(biāo)</td>
<td onclick="displayResult(this)">單擊顯示單元格下標(biāo)</td>
</tr>
</table>
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool在線教程(w3cschool.cn)</title>
<script>
function displayResult(x){
alert("Cell index is: " + x.cellIndex);
}
</script>
</head>
<body>
<table border="1">
<tr>
<td onclick="displayResult(this)">單擊顯示單元格下標(biāo)</td>
<td onclick="displayResult(this)">單擊顯示單元格下標(biāo)</td>
</tr>
</table>
</body>
</html>
嘗試一下 ?
td/th 對(duì)象
更多建議: