¿Cómo cuento el número de elementos tr dentro de una tabla usando jQuery?
Sé que hay una pregunta similar , pero solo quiero las filas totales.
¿Cómo cuento el número de elementos tr dentro de una tabla usando jQuery?
Sé que hay una pregunta similar , pero solo quiero las filas totales.
Respuestas:
Use un selector que seleccionará todas las filas y tomará la longitud.
var rowCount = $('#myTable tr').length;
Nota: ¡este enfoque también cuenta todos los trs de cada tabla anidada!
Si usa <tbody>
o <tfoot>
en su tabla, tendrá que usar la siguiente sintaxis o obtendrá un valor incorrecto:
var rowCount = $('#myTable >tbody >tr').length;
Alternativamente...
var rowCount = $('table#myTable tr:last').index() + 1;
Esto garantizará que las filas de tabla anidadas no se cuenten también.
var rowCount = $('table#myTable tr:last').index() + 1;
<thead>
filas y filas de tablas anidadas. Agradable. jsfiddle.net/6v67a/1576
<td>
tiene una tabla interna, devuelve el recuento de filas de esa tabla! jsfiddle.net/6v67a/1678
Bueno, obtengo las filas attr de la tabla y obtengo la longitud de esa colección:
$("#myTable").attr('rows').length;
Creo que jQuery funciona menos.
Aquí está mi opinión al respecto:
//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();
Tengo lo siguiente:
jQuery('#tableId').find('tr').index();
prueba este si hay tbody
Sin encabezado
$("#myTable > tbody").children.length
Si hay encabezado entonces
$("#myTable > tbody").children.length -1
¡¡¡Disfrutar!!!
<thead>
que debe venir antes <tbody>
. Por lo tanto, el -1 no debería ser necesario, si la tabla está diseñada adecuadamente de acuerdo con el estándar.
Necesitaba una forma de hacer esto en un retorno de AJAX, así que escribí esta pieza:
<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 es un ejemplo rápido, pero puede ser útil.
row_count = $('#my_table').find('tr').length;
column_count = $('#my_table').find('td').length / row_count;
var trLength = jQuery('#tablebodyID >tr').length;