我有一個table table-bordered table-hover table-stripped
表加載了一些數據。 我使用ajax重新加載行,表變得醜陋,失去了表格邊框,表格懸停和表格剝離引導類的所有屬性。 如何重新加載這些屬性?它是否帶有JS?如何重新初始化已加載的引導表?
編輯: 以下是代碼。
表:
<table class="table table-bordered table-hover table-stripped" id="data_list">
<tr>
<th>Lot</th>
<th>size</th>
</tr>
<?php foreach ($lots as $lot): ?>
<tr>
<td><?php echo $lot['id']; ?></td>
<td><?php echo $lot['size']; ?></td>
</tr>
<?php endforeach ?>
</table>
JS:
...
$.ajax({type: "POST",cache: false,url: '?', dataType: "html", data: submitdata,
success: function(res) {
$('#data_list').html(res);
},
error: function(xhr, ajaxOptions, thrownError) {
bootbox.alert("There was an error, try again. "+thrownError);
},
async: true
});
AJAX響應:
<tr>
<th>Lot</th>
<th>Size</th>
</tr>
<tr>
<td>38706000524</td>
<td>30</td>
</tr>
你怎麼樣「重裝」表?你可以在那裏提供你的代碼 – haxxxton
。謝謝 –
你是否從服務器返回正確的內部html表格? 「res」中的數據是什麼? – haxxxton