jquery 遍历table
$("table").find("tr").each(function(){
$(this).find("td").each(function(){
alert($(this).text());
});
});
posted on 2014-09-18 21:29 chinjohn11 阅读(48) 评论(0) 编辑 收藏 举报
$("table").find("tr").each(function(){
$(this).find("td").each(function(){
alert($(this).text());
});
});
posted on 2014-09-18 21:29 chinjohn11 阅读(48) 评论(0) 编辑 收藏 举报