0

我有我的 Ajax 调用:

$(function(){
    $("#refresh1").click(function(){
        $.ajax({
            type:"POST",
            url:"TableRefresh.php",

            success:function(response){
                $("#results").html(response);
            }
        });
    });                      
}) 

TableRefresh.php只需使用 printf() 语句创建并打印一个 HTML 表,但是当它打印回页面时,它会将其粘贴在最顶部。我怎样才能控制它放在哪里?(底端)

4

1 回答 1

1

TableRefresh.php不打印任何东西。

在函数中,如果您想要页面中其他success位置的结果,则将结果添加到元素中,只需更改选择器即可。#results

于 2013-03-06T03:14:04.870 回答