gpt4 book ai didi

jquery - 从 jQuery 中的 .ajax 函数接收结果

转载 作者:行者123 更新时间:2023-12-01 08:21:44 24 4
gpt4 key购买 nike

我有这个代码:

$.ajax({
type: "POST",
url: "tosql.php",
data: {
content, content
}
});

我想知道如何从 tosql.php (结果)获取回调并将该 html 添加到 div class = "content"

最佳答案

success 回调中执行此操作:

$.ajax({
type: "POST",
url: "tosql.php",
data: {
content: content
},
success: function(html) {

// you said 'add' so I'm assuming '.append'
// if you meant fill/replace then use `.html(html);`
$("div.content").append(html);
}
});

此外(如果不是您的拼写错误),对象属性名称和值由冒号分隔:

    data: {
content: content
},

而不是逗号:

    data: {
content, content
},

关于jquery - 从 jQuery 中的 .ajax 函数接收结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6965014/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com