回答:
すべての行を選択し、長さを取るセレクターを使用します。
var rowCount = $('#myTable tr').length;
注:このアプローチでは、ネストされたすべてのテーブルのすべてのtrもカウントされます。
あなたが使用している場合<tbody>
か、<tfoot>
あなたのテーブルには、次の構文を使用する必要がありますか、不正な値が得られます。
var rowCount = $('#myTable >tbody >tr').length;
あるいは...
var rowCount = $('table#myTable tr:last').index() + 1;
これにより、ネストされたテーブル行もカウントされなくなります。
var rowCount = $('table#myTable tr:last').index() + 1;
<thead>
行とネストした表の行を無視します。いいね。jsfiddle.net/6v67a/1576
<td>
に内部テーブルがある場合、そのテーブルの行数を返します!! jsfiddle.net/6v67a/1678
さて、私はテーブルからattr行を取得し、そのコレクションの長さを取得します。
$("#myTable").attr('rows').length;
jQueryはあまり機能しないと思います。
これが私の見解です。
//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();
tbodyがある場合は、これを試してください
ヘッダーなし
$("#myTable > tbody").children.length
ヘッダーがある場合
$("#myTable > tbody").children.length -1
楽しい!!!
<thead>
前に来るように囲まれている必要があり<tbody>
ます。したがって、テーブルが標準に従って適切に設計されている場合、-1は必要ありません。
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>
これは明らかに簡単な例ですが、役立つ場合があります。