📅  最后修改于: 2022-03-11 15:03:25.854000             🧑  作者: Mango
// I have a table (#tbLog) and rows (tr) contain class record.
$('#tbLog').find('tr.record').each(function(){
console.log('Row with class',$(this).attr('class'));
});