jquery遍历table里面的td值
//备注:遍历tmpdiv里面的第一个table的每行td里面的文本内容
$("#tmpdiv table:eq(0) tr").each(function(index,element){
$("#tmpdiv table:eq(0) tr").each(function(index,element){
var a = $(element).children();//$(element)代表每行tr,后面的children代表tr下面的td,a即这一行所有td的集合
for(var i=0;i
alert(a.eq(i).text());// 取得index为 i的td里面的文本
}
});
当前文章:jquery遍历table里面的td值
URL标题:http://azwzsj.com/article/ijgjpo.html