如果你想在jquery中遍歷
$(document).ready(function() { $('tr').each(function() { var row_values = []; $(this).find('td').each(function() { row_values.push($(this).text()); }); console.log(row_values); }); });
上述代碼首先使用jQuery的ready()函數來確保DOM已經加載完畢。然后使用each()函數來遍歷每個
在每個
最后,我們使用console.log()函數來打印出數組的值。你還可以通過其他方式使用這個數組,例如將其放入一個表格中。
下一篇vue怎么實現標注