码迷,mamicode.com
首页 > 移动开发 > 详细

Ajax获取数据后append追加到表格内出现格式混乱的错误

时间:2017-05-01 00:26:15      阅读:1095      评论:0      收藏:0      [点我收藏+]

标签:错误   nbsp   分享   div   不同   image   app   map   append   

Ajax获取数据后append追加到表格内出现追加的数据与表格风格不同的错误:

$("#courierTable").append("<tr style=‘text-align: center‘> class=‘tab-content‘")
$("#courierTable").append("<tr style=‘text-align: center‘> class=‘tab-content‘")
$("#courierTable").append("<td style=‘text-align: center‘>"+obj[i].staffId+"</td>")
$("#courierTable").append("<td>"+obj[i].name+"</td>")
$("#courierTable").append("<td>"+obj[i].comapny+"</td>")
$("#courierTable").append("<td>"+obj[i].registerDate+"</td>")
$("#courierTable").append("<td>asdads</td>")
$("#courierTable").append("</tr>")
$("#courierTable").append(content)

出现的格式为:

技术分享

原因是因为append函数要求必须是闭合的完整的标签,不能先输出一个tr,再输出几个td最后关闭tr。改正后的如下:

content = "<tr style=‘text-align: center‘> class=‘tab-content‘"+
"<td style=‘text-align: center‘>"+obj[i].staffId+"</td>"+
"<td>"+obj[i].name+"</td>"+
"<td>"+obj[i].comapny+"</td>"+
"<td>"+obj[i].registerDate+"</td>"+
"<td>asdads</td>"+
"</tr>";
$("#courierTable").append(content)

效果如下:

技术分享

 

Ajax获取数据后append追加到表格内出现格式混乱的错误

标签:错误   nbsp   分享   div   不同   image   app   map   append   

原文地址:http://www.cnblogs.com/hfutlj/p/6790642.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!