gpt4 book ai didi

javascript - AJAX 表单提交后刷新 Div 的内容

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:32:25 26 4
gpt4 key购买 nike

我有这个 Ajax 代码来提交一个 PHP 表单。代码有效,但我想要 <div>内容应该更改为刷新而不刷新整个页面。

div 的 ID 是#container。

这是 AJAX 代码:

$('.accept_friend').submit(function(){
var data = $(this).serialize();

$.ajax({
url: "../accept_friend.php",
type: "POST",
data: data,
success: function( data )
{
//here is the code I want to refresh the div(#container)

},
error: function(){
alert('ERROR');
}
});

return false;
});

最佳答案

您将不得不更改 DIV 的 innerHTML 属性.. 使用 jQuery 是这样完成的:

$('#container').html('... new content goes here...');

所以在你的情况下添加成功函数:

$('#container').html(data);

$('#container').html(data.someAttribute);

取决于返回数据的类型和结构。

关于javascript - AJAX 表单提交后刷新 Div 的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35385374/

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