是否可以向已附加的数据添加更多内容?我有下面的代码,它在页面加载时显示数据
$(document).ready(function () {
$.ajax({
type: 'GET',
url: 'page.php',
data: vars,
success: function (data) {
$("#rows_of_data").html(data);
}
});
});
现在我想要一个表单提交来处理和显示数据库中已显示数据下方的新行
$("#myform").submit(function () {
// send via ajax
// display new rows below the last row of the old data appended
});