我有四个 HTML 表,并且必须将一个表中的数据与用户选择的一个表进行比较。我将用户选择的表 ID 传递给此函数,但我不知道如何循环遍历此表的行:
function callme(code) {
var tableName = 'table'+code;
//alert(tableName);
//How to do loop for this table?? HELP!!
$('#tableName tr').each(function() { //how to do
if (!this.rowIndex) return; // skip first row
var customerId = $(this).find("td").eq(0).html();
alert(customerId);
// call compare function here.
});
}
对于有经验的 jQuery 程序员来说,这应该是一件非常简单的事情。这是我的 jsfiddle:http: //jsfiddle.net/w7akB/66/