0
我有一個從$ .ajax函數返回的列表。我想將返回的列表添加到表中。以下是我正在使用的代碼片段。如何在表jQuery中添加一個列表?
$(document).ready(function() {
$.ajax({
type: "POST",
url: "Home/LoadTable",
success: function(data) {
var loopList = data.message.NewList;
alert(loopList);
//tried the following :(
//loopList.each(function(i) {
// addRecentData(i);
//});
},
error: function() {
alert("ERROR");
}
});
});
function addRecentData(data) {
$('#newTable tr:last').after('<tr><td class="date"></td><td class="name"></td></tr>');
var $tr = $('#newTable tr:last');
$tr.find('.date').html(data.message);
$tr.find('.name').html(data.message.NewList[0].Name.toString());
}
表
<table id = "newTable">
<tr>
<td class="date"></td>
<td class="polNum"></td>
</tr>
</table>
你的JSON回來的樣子是什麼? – 2010-08-10 19:53:18
我有JSON返回列表(NewList)。警報消息確實顯示對象存在,用逗號分隔列表對象([Object object],[Object object] ...)。 $ tr.find( '名')的HTML(data.message.NewList [0] .Name.toString())。還在列表中顯示第一個名字 – MrM 2010-08-10 20:32:00
@ user54197 - 那麼約會呢?目前尚不清楚日期屬性位於json對象上 – 2010-08-10 20:48:40