我用jquery遍历一个表,但是我希望在tranvers表的特定时刻得到tr的索引:
$('table#tabla_materia tr').each(function()
{
if(typeof ($(this).find('input.cep').val()) !== 'undefined'){
// get the index here
rowIndex
}
// get the index of the new element
var nuevoRegistro = tbl_materia.insertRow(rowIndex+1);
nuevoRegistro.setAttribute('class', 'cep');
}
你能帮帮我吗?