gpt4 book ai didi

jquery - 从服务器获取 json 后页面不会停止加载

转载 作者:行者123 更新时间:2023-12-01 03:48:12 27 4
gpt4 key购买 nike

我正在使用此代码从服务器获取一些 json

$(function () 
{
$.ajax({
url: 'fetch.php',
data: "",
dataType: 'json',
success: function(data)
{
jQuery.each(data, function() {
document.write(this[0] + "<br/>" + this[1]);
});
}
});

});

我在服务器端有这个

$rows = Array();
while($row = mysql_fetch_array($result)){
array_push($rows, $row);
}
echo json_encode($rows);

当我尝试使用 json 加载 html 文件时,会显示数据,但页面不会停止加载。

最佳答案

我解决了问题。我改变了

document.write(this[0] + "<br/>" + this[1]);

$(document.body).append(this[0] + "<br/>" + this[1]);

但我不能声称完全是我自己完成的。我从这篇文章中得到了一个提示 Browser doesn't stop loading with jQuery $.get

关于jquery - 从服务器获取 json 后页面不会停止加载,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11265160/

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