我有我的 Ajax 调用:
$(function(){
$("#refresh1").click(function(){
$.ajax({
type:"POST",
url:"TableRefresh.php",
success:function(response){
$("#results").html(response);
}
});
});
})
TableRefresh.php
只需使用 printf() 语句创建并打印一个 HTML 表,但是当它打印回页面时,它会将其粘贴在最顶部。我怎样才能控制它放在哪里?(底端)