Los últimos tutoriales de desarrollo web
 

TableRow sectionRowIndex Property

<TableRow Object

Ejemplo

Haga clic en diferentes filas para alertar a su posición:

alert("Section row index is: " + x.sectionRowIndex);
Inténtalo tú mismo "

Definición y Uso

La propiedad sectionRowIndex devuelve la posición de una fila en la filas de recogida de un <tbody>, <culata en T> o <tfoot> .


Soporte del navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

La propiedad sectionRowIndex es compatible con todos los principales navegadores.


Sintaxis

Devolver la propiedad sectionRowIndex:

tablerowObject .sectionRowIndex

Detalles técnicos

Valor de retorno: Un número, que representa la posición de la fila en la colección de filas de un tbody, thead, o tfoot

Más ejemplos

Ejemplo

Devuelve la posición de las filas de la colección THEAD tbody, y filas 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>";
}
Inténtalo tú mismo "

<TableRow Object