gpt4 book ai didi

javascript - 使用 jquery 和 for 循环循环 html 表(不是针对每个)

转载 作者:行者123 更新时间:2023-11-30 13:01:05 28 4
gpt4 key购买 nike

我有一个 HTML 表格

 <table id="mytab">
<thead>
<th>col1</th>
<th>col2</th>
</thead>
<tbody>
<tr>
<td>1</td>
<td>2</td>
</tr>
<tr>
<td>11</td>
<td>22</td>
</tbody>
</table>

我正在编写 jquery 函数

  function LoopTable()
{
$row = $('#mytab tbody >tr"); //here I have successfully find all the rows.

//now i want to loop on rows and find each column row
for (var i=0; i<$rows.length; i++)
{
//need something here to find col data

}

我应该使用什么从行中获取列值

最佳答案

更新代码

$(document).ready(function() {
var rows = $('#mytab tbody >tr');
var columns;
for (var i = 0; i < rows.length; i++) {
columns = $(rows[i]).find('td');
for (var j = 0; j < columns.length; j++) {
console.log($(columns[j]).html());
}
}
});

关于javascript - 使用 jquery 和 for 循环循环 html 表(不是针对每个),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17389290/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com