ฉันจะนับจำนวนองค์ประกอบ tr ภายในตารางโดยใช้ jQuery ได้อย่างไร
ฉันรู้ว่ามีคำถามที่คล้ายกันแต่ฉันต้องการแถวทั้งหมด
ฉันจะนับจำนวนองค์ประกอบ tr ภายในตารางโดยใช้ jQuery ได้อย่างไร
ฉันรู้ว่ามีคำถามที่คล้ายกันแต่ฉันต้องการแถวทั้งหมด
คำตอบ:
ใช้ตัวเลือกที่จะเลือกแถวทั้งหมดและใช้ความยาว
var rowCount = $('#myTable tr').length;
หมายเหตุ: วิธีการนี้ยังนับ trs ทั้งหมดของทุกตารางที่ซ้อนกัน!
หากคุณใช้<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>
เห็นได้ชัดว่านี่เป็นตัวอย่างรวดเร็ว แต่อาจเป็นประโยชน์
ฉันพบว่ามันทำงานได้ดีจริงๆถ้าคุณต้องการนับแถวโดยไม่นับแถวที่และแถวใด ๆ จากตารางภายในตาราง:
var rowCount = $("#tableData > tbody").children().length;
row_count = $('#my_table').find('tr').length;
column_count = $('#my_table').find('td').length / row_count;
var trLength = jQuery('#tablebodyID >tr').length;