所以我試圖將Url的數據追加到表頭。從URL調用的數據是一個字符串列表。正如你所看到的,我正試圖通過列表中的每個值,然後將其附加到我的表頭「數據」中。 但是,當我運行代碼沒有附加任何東西。我知道數據正在進入,因爲窗口警報正在顯示每個字符串。JQuery:追加到表頭
JQuery的:
$(document).ready(function() {
$.ajax({
url: 'http://..../api/Dynamic?table=table1',
dataType: 'Json',
success: function (tableResults) {
var count = 0;
$.each(tableResults, function() {
window.alert(this);
$('#data th:last-child').append('<th><a id="count">' + this + '</a></th>');
count++;
});
}
});
});
HTML:
<table id="data" border="1" align="center" width="95%">
<thead>
<tr>
</tr>
</thead>
<tbody>
</tbody>
</table>
有什麼建議?
你......附加一個日到日。這沒有意義。 –