Como posso contar o número de elementos tr dentro de uma tabela usando o jQuery?
Eu sei que há uma pergunta semelhante , mas eu só quero o total de linhas.
Como posso contar o número de elementos tr dentro de uma tabela usando o jQuery?
Eu sei que há uma pergunta semelhante , mas eu só quero o total de linhas.
Respostas:
Use um seletor que selecionará todas as linhas e terá o comprimento.
var rowCount = $('#myTable tr').length;
Nota: essa abordagem também conta todos os trs de todas as tabelas aninhadas!
Se você usar <tbody>
ou <tfoot>
em sua tabela, precisará usar a seguinte sintaxe ou obter um valor incorreto:
var rowCount = $('#myTable >tbody >tr').length;
Alternativamente...
var rowCount = $('table#myTable tr:last').index() + 1;
Isso garantirá que quaisquer linhas de tabela aninhadas também não sejam contadas.
var rowCount = $('table#myTable tr:last').index() + 1;
<thead>
linhas e linhas da tabela aninhada. Agradável. jsfiddle.net/6v67a/1576
<td>
tiver tabela interna, ele retornará a contagem de linhas dessa tabela !! jsfiddle.net/6v67a/1678
Bem, eu recebo as linhas attr da tabela e obtenho o comprimento para essa coleção:
$("#myTable").attr('rows').length;
Eu acho que o jQuery funciona menos.
Aqui está a minha opinião:
//Helper function that gets a count of all the rows <TR> in a table body <TBODY>
$.fn.rowCount = function() {
return $('tr', $(this).find('tbody')).length;
};
USO:
var rowCount = $('#productTypesTable').rowCount();
Eu tenho o seguinte:
jQuery('#tableId').find('tr').index();
tente este se houver tbody
Sem cabeçalho
$("#myTable > tbody").children.length
Se houver cabeçalho, então
$("#myTable > tbody").children.length -1
Aproveitar!!!
<thead>
qual deve vir antes <tbody>
. Portanto, o -1 não deve ser necessário, se a tabela for projetada corretamente de acordo com o padrão.
Eu precisava de uma maneira de fazer isso em um retorno AJAX, então escrevi este artigo:
<p id="num_results">Number of results: <span></span></p>
<div id="results"></div>
<script type="text/javascript">
$(function(){
ajax();
})
//Function that makes Ajax call out to receive search results
var ajax = function() {
//Setup Ajax
$.ajax({
url: '/path/to/url', //URL to load
type: 'GET', //Type of Ajax call
dataType: 'html', //Type of data to be expected on return
success: function(data) { //Function that manipulates the returned AJAX'ed data
$('#results').html(data); //Load the data into a HTML holder
var $el = $('#results'); //jQuery Object that is holding the results
setTimeout(function(){ //Custom callback function to count the number of results
callBack($el);
});
}
});
}
//Custom Callback function to return the number of results
var callBack = function(el) {
var length = $('tr', $(el)).not('tr:first').length; //Count all TR DOM elements, except the first row (which contains the header information)
$('#num_results span').text(length); //Write the counted results to the DOM
}
</script>
Obviamente, este é um exemplo rápido, mas pode ser útil.
row_count = $('#my_table').find('tr').length;
column_count = $('#my_table').find('td').length / row_count;
var trLength = jQuery('#tablebodyID >tr').length;