jQuery:计算表中的行数

时间:2009-07-19 14:02:42

标签: jquery count row

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

我知道有一个similar question,但我只想要总行数。

11 个答案:

答案 0 :(得分:896)

使用选择器选择所有行并取长度。

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

注意:此方法还会计算每个嵌套表的所有值!

答案 1 :(得分:166)

如果您在表格中使用<tbody><tfoot>,则必须使用以下语法,否则您将获得错误的值:

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

答案 2 :(得分:47)

...替代地

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

jsFiddle DEMO

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

答案 3 :(得分:32)

好吧,我从表中获取了attr行并获得该集合的长度:

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

我认为jQuery的工作量较少。

答案 4 :(得分:16)

这是我的看法:

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

<强> USAGE:

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

答案 5 :(得分:12)

我得到了以下内容:

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

答案 6 :(得分:7)

我需要一种方法在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>

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

答案 7 :(得分:6)

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

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

答案 8 :(得分:6)

  

如果有tbody,请尝试这个

没有标题

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

如果有标题,那么

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

<强> 享受!!!

答案 9 :(得分:3)

row_count =  $('#my_table').find('tr').length;
column_count =  $('#my_table').find('td').length / row_count;

答案 10 :(得分:1)

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