我有我的Ajax电话:
$(function(){
$("#refresh1").click(function(){
$.ajax({
type:"POST",
url:"TableRefresh.php",
success:function(response){
$("#results").html(response);
}
});
});
})
TableRefresh.php
只是创建并打印带有printf()语句的HTML表格,但是当它在页面上打印出来时,它会将其粘贴在最顶层。我怎样才能控制它的位置? (底部)
答案 0 :(得分:1)
TableRefresh.php
不会打印任何内容。
在success
函数中,如果您希望结果在页面中的其他位置只是更改选择器,则将结果添加到元素#results
。