web-dev-qa-db-ja.com

jQuery:テーブル内の行数を数える

JQueryを使ってテーブル内のtr要素の数を数える方法は?

似たような質問 があることは知っていますが、合計行数が欲しいだけです。

457
danjan

すべての行を選択して長さを取るセレクタを使用してください。

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

注意:この方法では、ネストしたすべてのテーブルのすべてのtrもカウントされます。

889
tvanfosson

テーブルで<tbody>または<tfoot>を使用する場合は、次の構文を使用する必要があります。そうしないと、誤った値が表示されます。

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

代わりに...

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

jsFiddleデモ

これにより、ネストしたテーブル行も確実にカウントされません。

47
DevlshOne

それでは、テーブルからattr行を取得し、そのコレクションの長さを取得します。

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

私はjQueryがあまりうまくいかないと思います。

32
jjroman

これが私の考えです。

//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();
16
Ricky G

私は以下のものを得ました:

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

私は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
dennismonsewicz

tbodyがあればこれを試してください

ヘッダーなし

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

ヘッダがあれば

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

お楽しみください!

6
BornToCode

もしテーブルの内側にあるテーブルのthや他の行を数えずに行を数えたいのなら、これはとてもうまくいくことがわかりました。

var rowCount = $("#tableData > tbody").children().length;
6
Zoe
row_count =  $('#my_table').find('tr').length;
column_count =  $('#my_table').find('td').length / row_count;
3
Cybernetic
jQuery("#tablebodyID >tr).length();
1
sivaprakash