jQuery:统计表中的行数

我如何计算使用jQuery的表内tr元素的数量?

我知道有一个类似的问题 ,但我只想要总行数。

使用select器将select所有的行,并采取的长度。

var rowCount = $('#myTable tr').length; 

注意:这种方法也计算每个嵌套表的所有trs!

如果在表中使用<tbody><tfoot> ,则必须使用以下语法,否则会得到不正确的值:

 var rowCount = $('#myTable >tbody >tr').length; 

另外…

 var rowCount = $('table#myTable tr:last').index() + 1; 

jsFiddle DEMO

这将确保任何嵌套的表行都不计算在内。

那么,我从表中获得attr行并获得该集合的长度:

 $("#myTable").attr('rows').length; 

我认为,jQuery的作品较less。

这是我的承诺:

 //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; }; 

用法:

 var rowCount = $('#productTypesTable').rowCount(); 

我得到了以下几点:

 jQuery('#tableId').find('tr').index(); 

我需要一个方法来做到这一点在一个AJAX的回报,所以我写了这一块:

 <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> 

显然这是一个快速的例子,但是可能会有所帮助。

我发现这个工作真的很好,如果你想计算行而不计算表内的表和任何行:

 var rowCount = $("#tableData > tbody").children().length; 

试试这个,如果有tbody的话

没有标题

 $("#myTable > tbody").children.length 

如果有标题然后

 $("#myTable > tbody").children.length -1 

请享用!!!

 jQuery("#tablebodyID >tr).length();