tutoriais mais recente desenvolvimento web
 

TableRow sectionRowIndex Property

<TableRow objeto

Exemplo

Clique em linhas diferentes para alertar a sua posição:

alert("Section row index is: " + x.sectionRowIndex);
Tente você mesmo "

Definição e Uso

A propriedade sectionRowIndex retorna a posição de uma linha no fileiras coleção de um <tbody>, <thead> ou <tfoot> .


Suporte navegador

Internet ExplorerFirefoxOperaGoogle ChromeSafari

A propriedade sectionRowIndex é suportado em todos os principais navegadores.


Sintaxe

Devolver o imóvel sectionRowIndex:

tablerowObject .sectionRowIndex

Detalhes técnicos

Valor de retorno: Um número, representando a posição da linha na colecção de linhas de um tbody, thead, ou tfoot

mais Exemplos

Exemplo

Retornar a posição das linhas da coleção thead, tbody, e linhas 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>";
}
Tente você mesmo "

<TableRow objeto