답변:
모든 행을 선택하고 길이를 취하는 선택기를 사용하십시오.
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>
분명히 이것은 빠른 예이지만 도움이 될 수 있습니다.