我需要遍历特定表的所有行,我已经完成了如下。在某一时刻,我需要删除匹配的表格行。我不知道如何跳过第一行并遍历所有其他行。我下面的代码循环遍历所有 tr。
$('#tbl_dynamic_call_dates > tbody > tr').each(
function() {
console.log($(this).find(\'td:first\').text());
if($.inArray($(this).find(\'td:first\').text(),array) == -1){
$(this).remove();
}