$("#tableid tr").each(function () {
alert($(this).find("td:first-child").text());
});
找个事件触发一下 看下效果吧 :)
--------------给错了 上面是 每个TR 第一个td的值 下面是你想要的
function cleartd() {
var text = "";
$("#tableid tr:first-child").find("td").each(function () {
text+= $(this).text();
});
alert(text);
}