jquery遍历table tr td内容

$("#result").find("tr").each(function () {
$(this).find("td").each(function () {
if ($(this).text().indexOf("惠") > 0) {
var m = $(this).text().toString();
$(this).css("width", "165px");
$(this).html(m + "<div style='background-color: #e4393c;color:white;width:20px;height:20px;line-height:20px;text-align:center;float:right;'>促</div>");
}
});
});

posted @ 2014-07-14 16:12  美凯云工作室  阅读(199)  评论(0编辑  收藏  举报