jQuery Ajax无法加载

时间:2013-08-30 19:37:28

标签: jquery ajax

我正在使用jQuery向php页面发出ajax请求。我正在使用类似于以下javascript代码的内容:

$.ajax("#putItHere", {
    success:"test.php?fish=pope"
});

请注意这不适用于$(“#putItHere”)。load(“test.php?fish = pope”)。谁能给我一个线索,说明为什么这不起作用?

2 个答案:

答案 0 :(得分:2)

正确的语法是:

$.ajax("test.php?fish=pope", {
    success: function(result) {
        $("#putItHere").html(result);
    }
});

答案 1 :(得分:0)

$.ajax({
    url: "test.php",
    data: { fish: 'pope' },
    success: function(data){
    // do stuff with returned data here
    });

我认为这就是你想要的......