HTML:
Name | Age | Gender |
---|---|---|
Footer row 1 | Footer row 2 | Footer row 3 |
JavaScript:
$.ajax({ url: '/path/to/data', method: 'GET', success: function(response) { // Append data to tbody $('#data').html(response.data);
// Append footer data to tfoot
$('#data tfoot').html(response.footer);
} });
上一篇:ajax调用未发生