例
自分の位置を知らせるために別の行をクリックしてください。
alert("Section row index is: " + x.sectionRowIndex);
»それを自分で試してみてください 定義と使用法
sectionRowIndexプロパティは、行の位置を返す行の集合<TBODY>、<THEAD>または<tfoot>
ブラウザのサポート
sectionRowIndexプロパティは、すべての主要なブラウザでサポートされています。
構文
sectionRowIndexプロパティを返します:
tablerowObject .sectionRowIndex
技術的な詳細
戻り値: | THEAD、TBODYの行コレクション内の行の位置を表す数値、またはTFOOT |
---|
その他の例
例
thead要素、TBODY、TFOOTと行コレクション内の行の位置を返します:
var x = document.getElementsByTagName("tr");
var txt = "";
var i;
for (i = 0; i < x.length; i++) {
txt = txt + "The index of Row
"+(i+1)+" is: "+x[i].sectionRowIndex+"<br>";
}
»それを自分で試してみてください <のTableRowオブジェクト