我的 html 内容如下所示:
<table>
<tr>
<th>Log1 Column</th>
<th>Log2 Column</th>
<th>Log3 Column</th>
</tr>
<tbody id="bottomLogTable"></tbody>
</table>
不知何故,我没有从 #bottomLogTable 位置的 $.post 获取返回数据,但萤火虫说 200 ok,这意味着数据返回。
$("#logClick").live("click", function()
{
$.post("node2542.txt", function(data)
{
$("#bottomLogTable").append(data); // not display returned data
$("#bottomLogTable").html(data); // also not display returned data
});
});
有什么建议或想法可以让我朝着正确的方向解决这个问题吗?