这是我的代码:
$.ajax({
type: 'GET',
url: "/plan",
dataType: "json",
ContentType: "application/json; charset=utf-8",
data: data,
success: function (data) {
if (data.status == "OK" && data.body != "") {
var newRow = $("<tr><td>" + data.body.base.address + "</td><td>hi</td><td>hi</td><td>hi</td><td>hi</td><td>hi</td></tr>");
$("#titleRow").after(newRow);
return TINY.box.show({
html: $('#workList').html(),
animate: false,
close: true,
boxid: 'error',
top: 10
});
} else {
alert("Fail");
}
}
});
HTML:
<table id="table">
<!-- the title row -->
<tr id="titleRow">
<th>案件番号</th>
<th>住所</th>
<th>施主名</th>
<th>日付</th>
<th>ステータス</th>
<th>担当者</th>
</tr>
<!-- end title row -->
<!-- content row-->
<!-- end content row -->
</table>
我想在之后添加一行,#titleRow
但添加了 6 行。我不知道为什么。