gpt4 book ai didi

javascript - 循环中的多个ajax内容请求

转载 作者:行者123 更新时间:2023-12-02 20:44:17 24 4
gpt4 key购买 nike

我正在尝试将一些ajax内容加载到表中,不幸的是它只是多次加载最后一行,而不是加载每个新行。

这是我正在使用的代码:

function periodicRefresh()
{
$.ajax({
type: 'GET',
url: 'include/ajaxActions.php',
data: "action=displayLastEvent",

success: function(msg){
var newid = msg;
current = $("#list tr:first").get(0).id;
if(newid != current){
while (current<newid)
{
current++;
addToList(current);
}
}
}
});
}

function addToList(x)
{
$.ajax({
type: 'GET',
url: 'include/ajaxActions.php',
data: "action=displayRow&row="+x,

success: function(msg){
$("#list").prepend(msg);
$("#list tr:first").highlightFade({
speed:3000
});
lastrow = x-20;
$('#'+lastrow).remove();
}
});

}

displayLastEvent 返回最后一行的 id。

displayRow 返回最后一行

最佳答案

您需要将 xmlHttps 推送到数组或抽象数据类型中,然后可以附加事件处理程序。看来 jquery 不适合你。

关于javascript - 循环中的多个ajax内容请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1693816/

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