gpt4 book ai didi

php - 如何在 Ajax 调用 (jQuery) 后更新 DOM?

转载 作者:可可西里 更新时间:2023-11-01 13:27:02 29 4
gpt4 key购买 nike

如何在调用后使用新添加的记录元素更新 DOM?

我应该在回调时返回新插入的数据库记录内容然后使用 jquery 追加吗?

如果没有足够的数据来回答问题,请提出建议。

$(function(){

$('#postentry').submit(function() {
var tyu = $('#tittle_ent').val();
if(tyu.length <= 2)
{alert('Enter More Text!'); return false;}else
{
$.post(
"posts_in.php",
$("#postentry").serialize(),
function(data){
//alert(data);
}
);
return false;
}
});

});

每条记录看起来像这样:

<div id="post349" class="myclass">
This is some text.
</div>

最佳答案

我会使用 $.ajax() 而不是 $.post():

$.ajax({
type:'post',
url: 'posts_in.php',
data: $("#postentry").serialize(),
success:function(data){
var id='post349';
$('<div></div>').attr('id',id).addClass('myclass').html(data).appendTo('#records_wrapper');
}
});

如何附加和填充 div 的快速演示:http://jsfiddle.net/AlienWebguy/zuPA2/1/

关于php - 如何在 Ajax 调用 (jQuery) 后更新 DOM?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6713912/

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