日期:2014-05-17 浏览次数:20482 次
$.each(json, function (i, n) {
var trs = "<tr style=\"height:14px;\" title=\"" + n.Id + "\" id=\"" + n.Id+ "\" align=\"center\">";
trs += "<td style=\"height:14px; line-height:14px; \">" + n.Name+ "</td>";
trs += "<td style=\"height:14px; line-height:14px; \">" + n.Num+ "</td>";
trs += "<td style=\"height:14px; line-height:14px; \">" + n.Agent+ "</td>";
trs += "<td style=\"height:14px; line-height:14px; \">" + n.Name + "</td>";
trs += "</tr>";
$("#LeftView tbody").append(trs);
//$(trs).appendTo("#LeftView");
});
var lFoot = $("#LeftFoot");
lFoot.remove();
$("#LeftView tbody").append("<tr style=\"background:#f1f1f1;\" id=\"LeftFoot\"><td colspan=\"4\"></td></tr>");