tdObject.cellIndexは、表(table要素)におけるセル(td要素)のインデックス番号を取得するプロパティ。
構文
取得
$tdElementReference.cellIndex;
戻り値
- セル(td要素)のインデックス番号。
- 「0」から始まる点に注意。
例
$tableElementReference.rows[0].cells[0].cellIndex; // 表の1行目の行の1列目のセル(td要素)のインデックス番号「0」
$tableElementReference.rows[0].cells[2].cellIndex; // 表の1行目の行の3列目のセル(td要素)のインデックス番号「2」
$tableElementReference.rows[0].cells[2].cellIndex; // 表の1行目の行の3列目のセル(td要素)のインデックス番号「2」
サンプル
カーソルを合わせたセル(td要素)のインデックス:
1行目1列目 | 1行目2列目 | 1行目3列目 |
2行目1列目 | 2行目2列目 | 2行目3列目 |
3行目1列目 | 3行目2列目 | 3行目3列目 |
サンプルの動作について
表のセルにカーソルを合わせると、そのセルの背景色を黄色にする。「カーソルを合わせたセル(td要素)のインデックス:」の右横に、カーソルを合わせたセル(td要素)のインデックス番号を表示する。
サンプルのソースコード
JavaScript
<script type="text/javascript">
window.onload = function(){
var $sampleRows = document.getElementById( "sample" ).rows;
for ( var $rowIndex = 0; $rowIndex < $sampleRows.length; $rowIndex++ ) {
var $sampleCells = $sampleRows[$rowIndex].cells;
for ( var $cellIndex = 0; $cellIndex < $sampleCells.length; $cellIndex++ ) {
$sampleCells[$cellIndex].onmouseover = function(){
this.style.backgroundColor = "yellow";
document.getElementById( "sampleOutput" ).innerHTML = this.cellIndex;
};
$sampleCells[$cellIndex].onmouseout = function(){
this.style.backgroundColor = "";
};
}
}
}
</script>
window.onload = function(){
var $sampleRows = document.getElementById( "sample" ).rows;
for ( var $rowIndex = 0; $rowIndex < $sampleRows.length; $rowIndex++ ) {
var $sampleCells = $sampleRows[$rowIndex].cells;
for ( var $cellIndex = 0; $cellIndex < $sampleCells.length; $cellIndex++ ) {
$sampleCells[$cellIndex].onmouseover = function(){
this.style.backgroundColor = "yellow";
document.getElementById( "sampleOutput" ).innerHTML = this.cellIndex;
};
$sampleCells[$cellIndex].onmouseout = function(){
this.style.backgroundColor = "";
};
}
}
}
</script>
HTML
<p>
カーソルを合わせたセル(td要素)のインデックス:<span id="sampleOutput"></span>
</p>
<table id="sample">
<tr>
<td>1行目1列目</td>
<td>1行目2列目</td>
<td>1行目3列目</td>
</tr>
<tr>
<td>2行目1列目</td>
<td>2行目2列目</td>
<td>2行目3列目</td>
</tr>
<tr>
<td>3行目1列目</td>
<td>3行目2列目</td>
<td>3行目3列目</td>
</tr>
</table>
カーソルを合わせたセル(td要素)のインデックス:<span id="sampleOutput"></span>
</p>
<table id="sample">
<tr>
<td>1行目1列目</td>
<td>1行目2列目</td>
<td>1行目3列目</td>
</tr>
<tr>
<td>2行目1列目</td>
<td>2行目2列目</td>
<td>2行目3列目</td>
</tr>
<tr>
<td>3行目1列目</td>
<td>3行目2列目</td>
<td>3行目3列目</td>
</tr>
</table>
CSS
<style>
#sample {
background-color: white;
cursor: pointer;
}
#sample tr,
#sample td {
background-color: inherit;
}
</style>
#sample {
background-color: white;
cursor: pointer;
}
#sample tr,
#sample td {
background-color: inherit;
}
</style>